|
@@ -24,10 +24,15 @@ server {
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
}
|
|
|
|
|
|
+ rewrite ^(/save.+)$ /rspamd$1 last;
|
|
|
location /rspamd/ {
|
|
|
proxy_pass http://rspamd:11334/;
|
|
|
proxy_set_header Host $host;
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
+ add_header Strict-Transport-Security "max-age=31536000; includeSubdomains";
|
|
|
+ add_header X-Content-Type-Options nosniff;
|
|
|
+ add_header X-Frame-Options SAMEORIGIN;
|
|
|
+ add_header X-XSS-Protection "1; mode=block";
|
|
|
}
|
|
|
|
|
|
location ^~ /inc/init.sql {
|