diff options
author | Silvino Silva <silvino@bk.ru> | 2020-04-20 01:01:22 +0100 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2020-04-20 01:01:22 +0100 |
commit | fb54fa28e88afb7f9dcd7027b7c820ae8b43f802 (patch) | |
tree | 4987031dc2bc48a56484d611598b46f696a8889b /tools/conf/etc/nginx/sites-enabled/email.conf | |
parent | fd186246f96768b8398f0ffe32ef136cb895fa21 (diff) | |
parent | 4216ad7e3cc4d4733034a50c122e4efa4ae08108 (diff) | |
download | doc-fb54fa28e88afb7f9dcd7027b7c820ae8b43f802.tar.gz |
Merge branch 'master' into release
Diffstat (limited to 'tools/conf/etc/nginx/sites-enabled/email.conf')
-rw-r--r-- | tools/conf/etc/nginx/sites-enabled/email.conf | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/tools/conf/etc/nginx/sites-enabled/email.conf b/tools/conf/etc/nginx/sites-enabled/email.conf new file mode 100644 index 0000000..5b34d7c --- /dev/null +++ b/tools/conf/etc/nginx/sites-enabled/email.conf @@ -0,0 +1,63 @@ +server { + listen 8080; + server_name email.server.ank; + + access_log syslog:server=unix:/dev/log,facility=daemon,tag=nginx_email,nohostname main; + error_log syslog:server=unix:/dev/log,facility=daemon,tag=nginx_email_err,nohostname debug; + + location /email { + alias /srv/www/email; + index index.php; + autoindex off; + } + + # Favicon + location ~ ^/email/favicon.ico$ { + root /srv/www/email/skins/classic/images; + log_not_found off; + access_log off; + expires max; + } + + # Robots file + location ~ ^/email/robots.txt { + allow all; + log_not_found off; + access_log off; + } + + # Deny Protected directories + location ~ ^/email/(config|temp|logs)/ { + deny all; + } + + location ~ ^/email/(README|INSTALL|LICENSE|CHANGELOG|UPGRADING)$ { + deny all; + } + + location ~ ^/email/(bin|SQL)/ { + deny all; + } + + # Hide .md files + location ~ ^/email/(.+\.md)$ { + deny all; + } + + # Hide all dot files + location ~ ^/email/\. { + deny all; + access_log off; + log_not_found off; + } + + location ~ /email/.*\.php { + alias /srv/www/email; + fastcgi_split_path_info ^(.+\.php)(/.+)$; + fastcgi_index index.php; + try_files $uri /index.php =404; + include /etc/nginx/fastcgi_params; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + fastcgi_pass 127.0.0.1:9000; + } +} |