2014-05-14 12:15:11 +00:00
|
|
|
# Redirect all HTTP to HTTPS.
|
2013-09-01 14:24:49 +00:00
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
listen [::]:80 default_server ipv6only=on;
|
|
|
|
|
|
|
|
server_name $PUBLIC_HOSTNAME;
|
2014-05-14 12:15:11 +00:00
|
|
|
root /tmp/invalid-path-nothing-here;
|
|
|
|
rewrite ^/(.*)$ https://$PUBLIC_HOSTNAME/$1 permanent;
|
2013-09-07 20:53:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# The secure HTTPS server.
|
|
|
|
|
|
|
|
server {
|
|
|
|
listen 443 ssl;
|
2013-09-01 14:24:49 +00:00
|
|
|
|
2013-09-07 20:53:25 +00:00
|
|
|
server_name $PUBLIC_HOSTNAME;
|
|
|
|
|
|
|
|
ssl_certificate $STORAGE_ROOT/ssl/ssl_certificate.pem;
|
|
|
|
ssl_certificate_key $STORAGE_ROOT/ssl/ssl_private_key.pem;
|
2014-04-18 00:27:52 +00:00
|
|
|
include /etc/nginx/nginx-ssl.conf;
|
2013-09-14 14:11:47 +00:00
|
|
|
|
2014-05-14 12:15:11 +00:00
|
|
|
# Expose this directory as static files.
|
2013-09-07 20:53:25 +00:00
|
|
|
root $STORAGE_ROOT/www/static;
|
|
|
|
index index.html index.htm;
|
|
|
|
|
|
|
|
# Roundcube Webmail configuration.
|
|
|
|
rewrite ^/mail$ /mail/ redirect;
|
|
|
|
rewrite ^/mail/$ /mail/index.php;
|
|
|
|
location /mail/ {
|
|
|
|
index index.php;
|
|
|
|
alias /var/lib/roundcube/;
|
|
|
|
}
|
|
|
|
location ~ /mail/.*\.php {
|
|
|
|
include fastcgi_params;
|
|
|
|
fastcgi_split_path_info ^/mail(/.*)()$;
|
|
|
|
fastcgi_index index.php;
|
|
|
|
fastcgi_param SCRIPT_FILENAME /var/lib/roundcube/$fastcgi_script_name;
|
|
|
|
fastcgi_pass unix:/tmp/php-fastcgi.www-data.sock;
|
|
|
|
client_max_body_size 20M;
|
|
|
|
}
|
2013-09-01 14:24:49 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|