2017-09-10 00:10:36 +08:00
|
|
|
server_tokens off;
|
2017-01-21 18:46:56 +08:00
|
|
|
proxy_cache_path /tmp levels=1:2 keys_zone=sogo:10m inactive=24h max_size=1g;
|
2017-07-31 03:39:35 +08:00
|
|
|
server_names_hash_bucket_size 64;
|
|
|
|
|
2017-05-04 04:26:10 +08:00
|
|
|
map $http_x_forwarded_proto $client_req_scheme {
|
|
|
|
default $scheme;
|
|
|
|
https https;
|
|
|
|
}
|
2017-09-10 00:10:36 +08:00
|
|
|
|
2018-02-02 22:12:19 +08:00
|
|
|
map $sent_http_content_type $expires {
|
|
|
|
default off;
|
2018-02-02 22:16:49 +08:00
|
|
|
text/html off;
|
2018-02-02 22:12:19 +08:00
|
|
|
text/css 1d;
|
|
|
|
application/javascript 1d;
|
2018-02-02 22:16:49 +08:00
|
|
|
application/json off;
|
|
|
|
image/png 1d;
|
2018-02-02 22:12:19 +08:00
|
|
|
}
|
|
|
|
|
2017-10-12 14:37:48 +08:00
|
|
|
server {
|
|
|
|
include /etc/nginx/mime.types;
|
|
|
|
charset utf-8;
|
|
|
|
override_charset on;
|
|
|
|
|
2016-12-22 19:20:26 +08:00
|
|
|
ssl_certificate /etc/ssl/mail/cert.pem;
|
|
|
|
ssl_certificate_key /etc/ssl/mail/key.pem;
|
2017-09-14 19:34:07 +08:00
|
|
|
ssl_protocols TLSv1.2;
|
|
|
|
ssl_ciphers 'ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256';
|
2016-12-22 19:20:26 +08:00
|
|
|
ssl_prefer_server_ciphers on;
|
2017-09-14 19:34:07 +08:00
|
|
|
ssl_session_cache shared:SSL:50m;
|
|
|
|
ssl_session_timeout 1d;
|
|
|
|
ssl_session_tickets off;
|
2017-10-11 17:23:51 +08:00
|
|
|
|
2017-10-09 04:57:34 +08:00
|
|
|
add_header Strict-Transport-Security "max-age=15768000; includeSubDomains";
|
|
|
|
add_header X-Content-Type-Options nosniff;
|
|
|
|
add_header X-XSS-Protection "1; mode=block";
|
|
|
|
add_header X-Robots-Tag none;
|
|
|
|
add_header X-Download-Options noopen;
|
|
|
|
add_header X-Permitted-Cross-Domain-Policies none;
|
2017-09-11 23:37:25 +08:00
|
|
|
|
2016-12-22 19:20:26 +08:00
|
|
|
index index.php index.html;
|
2016-12-10 03:39:02 +08:00
|
|
|
|
2018-08-06 04:37:07 +08:00
|
|
|
client_max_body_size 0;
|
|
|
|
|
2018-02-16 03:22:02 +08:00
|
|
|
include /etc/nginx/conf.d/listen_plain.active;
|
2017-10-11 17:23:51 +08:00
|
|
|
include /etc/nginx/conf.d/listen_ssl.active;
|
2017-02-28 17:12:18 +08:00
|
|
|
include /etc/nginx/conf.d/server_name.active;
|
2017-10-11 17:23:51 +08:00
|
|
|
|
2017-02-28 17:02:02 +08:00
|
|
|
error_log /var/log/nginx/error.log;
|
|
|
|
access_log /var/log/nginx/access.log;
|
2017-05-04 00:05:13 +08:00
|
|
|
absolute_redirect off;
|
2017-02-28 17:02:02 +08:00
|
|
|
root /web;
|
|
|
|
|
2017-04-29 22:36:41 +08:00
|
|
|
location ~ ^/api/v1/(.*)$ {
|
|
|
|
try_files $uri $uri/ /json_api.php?query=$1;
|
2017-03-28 17:51:31 +08:00
|
|
|
}
|
|
|
|
|
2017-02-28 21:27:19 +08:00
|
|
|
location ^~ /.well-known/acme-challenge/ {
|
2017-06-15 05:10:50 +08:00
|
|
|
allow all;
|
2017-02-28 21:27:19 +08:00
|
|
|
default_type "text/plain";
|
|
|
|
}
|
|
|
|
|
2017-02-28 17:02:02 +08:00
|
|
|
# If behind reverse proxy, forwards the correct IP
|
2018-01-24 15:36:19 +08:00
|
|
|
set_real_ip_from 10.0.0.0/8;
|
|
|
|
set_real_ip_from 172.16.0.0/12;
|
|
|
|
set_real_ip_from 192.168.0.0/16;
|
2018-02-01 20:36:01 +08:00
|
|
|
set_real_ip_from fc00::/7;
|
2017-02-28 17:02:02 +08:00
|
|
|
real_ip_header X-Forwarded-For;
|
|
|
|
real_ip_recursive on;
|
|
|
|
|
2017-06-15 05:14:41 +08:00
|
|
|
rewrite ^/.well-known/caldav$ /SOGo/dav/ permanent;
|
2017-06-15 05:17:31 +08:00
|
|
|
rewrite ^/.well-known/carddav$ /SOGo/dav/ permanent;
|
2017-06-15 05:14:41 +08:00
|
|
|
|
2017-06-15 05:10:50 +08:00
|
|
|
location ^~ /principals {
|
2018-02-16 03:22:02 +08:00
|
|
|
return 301 /SOGo/dav;
|
2017-02-28 17:02:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
location ~ \.php$ {
|
|
|
|
try_files $uri =404;
|
|
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
2018-04-26 19:51:55 +08:00
|
|
|
fastcgi_pass phpfpm:9002;
|
2017-02-28 17:02:02 +08:00
|
|
|
fastcgi_index index.php;
|
|
|
|
include /etc/nginx/fastcgi_params;
|
|
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
|
fastcgi_read_timeout 1200;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /rspamd/ {
|
2018-01-21 21:59:45 +08:00
|
|
|
proxy_pass http://rspamd:11334/;
|
2017-05-04 00:05:13 +08:00
|
|
|
proxy_set_header Host $http_host;
|
2017-02-28 17:02:02 +08:00
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
2017-05-04 00:05:13 +08:00
|
|
|
proxy_redirect off;
|
2018-02-02 22:12:19 +08:00
|
|
|
expires $expires;
|
2017-02-28 17:02:02 +08:00
|
|
|
}
|
|
|
|
|
2017-06-16 05:03:10 +08:00
|
|
|
location ~* ^/Autodiscover/Autodiscover.xml {
|
2017-05-04 04:26:10 +08:00
|
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
2018-04-26 19:51:55 +08:00
|
|
|
fastcgi_pass phpfpm:9002;
|
2017-05-04 04:26:10 +08:00
|
|
|
include /etc/nginx/fastcgi_params;
|
2017-02-28 21:27:19 +08:00
|
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
|
|
try_files /autodiscover.php =404;
|
2017-02-28 17:02:02 +08:00
|
|
|
}
|
|
|
|
|
2017-09-27 04:11:01 +08:00
|
|
|
location ~* ^/Autodiscover/Autodiscover.json {
|
|
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
2018-04-26 19:51:55 +08:00
|
|
|
fastcgi_pass phpfpm:9002;
|
2017-09-27 04:11:01 +08:00
|
|
|
include /etc/nginx/fastcgi_params;
|
|
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
|
|
try_files /autodiscover-json.php =404;
|
|
|
|
}
|
|
|
|
|
2017-02-28 21:27:19 +08:00
|
|
|
location ~ /(?:m|M)ail/(?:c|C)onfig-v1.1.xml {
|
2017-05-04 04:26:10 +08:00
|
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
2018-04-26 19:51:55 +08:00
|
|
|
fastcgi_pass phpfpm:9002;
|
2017-05-04 04:26:10 +08:00
|
|
|
include /etc/nginx/fastcgi_params;
|
2017-02-28 21:27:19 +08:00
|
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
|
|
try_files /autoconfig.php =404;
|
2017-02-28 17:02:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
location ^~ /Microsoft-Server-ActiveSync {
|
2018-02-13 16:12:54 +08:00
|
|
|
include /etc/nginx/conf.d/sogo_eas.active;
|
2017-02-28 17:02:02 +08:00
|
|
|
proxy_connect_timeout 1000;
|
|
|
|
proxy_next_upstream timeout error;
|
|
|
|
proxy_send_timeout 1000;
|
|
|
|
proxy_read_timeout 1000;
|
|
|
|
proxy_buffer_size 8k;
|
|
|
|
proxy_buffers 4 32k;
|
|
|
|
proxy_temp_file_write_size 64k;
|
|
|
|
proxy_busy_buffers_size 64k;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
2017-05-04 00:05:13 +08:00
|
|
|
proxy_set_header Host $http_host;
|
2017-02-28 17:02:02 +08:00
|
|
|
proxy_set_header x-webobjects-server-protocol HTTP/1.0;
|
|
|
|
proxy_set_header x-webobjects-remote-host $remote_addr;
|
|
|
|
proxy_set_header x-webobjects-server-name $server_name;
|
2017-05-04 04:26:10 +08:00
|
|
|
proxy_set_header x-webobjects-server-url $client_req_scheme://$http_host;
|
2017-04-25 16:49:38 +08:00
|
|
|
proxy_set_header x-webobjects-server-port $server_port;
|
2017-02-28 17:02:02 +08:00
|
|
|
client_body_buffer_size 128k;
|
2017-08-09 16:17:27 +08:00
|
|
|
client_max_body_size 0;
|
2017-02-28 17:02:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
location ^~ /SOGo {
|
2018-02-13 04:32:49 +08:00
|
|
|
include /etc/nginx/conf.d/sogo.active;
|
2017-02-28 17:02:02 +08:00
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
2017-05-04 00:05:13 +08:00
|
|
|
proxy_set_header Host $http_host;
|
2017-02-28 17:02:02 +08:00
|
|
|
proxy_set_header x-webobjects-server-protocol HTTP/1.0;
|
|
|
|
proxy_set_header x-webobjects-remote-host $remote_addr;
|
|
|
|
proxy_set_header x-webobjects-server-name $server_name;
|
2017-05-04 04:26:10 +08:00
|
|
|
proxy_set_header x-webobjects-server-url $client_req_scheme://$http_host;
|
2017-04-25 16:49:38 +08:00
|
|
|
proxy_set_header x-webobjects-server-port $server_port;
|
2017-02-28 17:02:02 +08:00
|
|
|
client_body_buffer_size 128k;
|
2017-08-09 16:17:27 +08:00
|
|
|
client_max_body_size 0;
|
2017-02-28 17:02:02 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /SOGo.woa/WebServerResources/ {
|
2018-09-09 15:51:37 +08:00
|
|
|
alias /usr/lib/GNUstep/SOGo/WebServerResources/;
|
2017-02-28 17:02:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
location /.woa/WebServerResources/ {
|
2018-09-09 15:51:37 +08:00
|
|
|
alias /usr/lib/GNUstep/SOGo/WebServerResources/;
|
2017-02-28 17:02:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
location /SOGo/WebServerResources/ {
|
2018-09-09 15:51:37 +08:00
|
|
|
alias /usr/lib/GNUstep/SOGo/WebServerResources/;
|
2017-02-28 17:02:02 +08:00
|
|
|
}
|
|
|
|
|
2018-02-14 16:09:17 +08:00
|
|
|
location (^/SOGo/so/ControlPanel/Products/[^/]*UI/Resources/.*\.(jpg|png|gif|css|js)$) {
|
2018-09-09 15:51:37 +08:00
|
|
|
alias /usr/lib/GNUstep/SOGo/$1.SOGo/Resources/$2;
|
2017-02-28 17:02:02 +08:00
|
|
|
}
|
|
|
|
|
2017-10-09 04:57:34 +08:00
|
|
|
include /etc/nginx/conf.d/site.*.custom;
|
2017-04-27 05:37:55 +08:00
|
|
|
}
|