Browse Source

Update web_system.tpl

Alexandros Ioannides 6 years ago
parent
commit
14fc14e519
1 changed files with 4 additions and 4 deletions
  1. 4 4
      install/deb/templates/mail/nginx/web_system.tpl

+ 4 - 4
install/deb/templates/mail/nginx/web_system.tpl

@@ -7,17 +7,17 @@ server {
     error_log  /var/log/nginx/domains/%domain%.error.log error;
 
     include %home%/%user%/conf/mail/%root_domain%/nginx.forcessl.conf*;
-  
+
     location ~ /\.(?!well-known\/) {
         deny all;
         return 404;
     }
-	
+
     location ~ ^/(README.md|config|temp|logs|bin|SQL|INSTALL|LICENSE|CHANGELOG|UPGRADING)$ {
         deny all;
         return 404;
     }
-    
+
     location / {
        try_files $uri $uri/ /index.php?q=$uri&$args;
        location ~* ^.+\.(ogg|ogv|svg|svgz|swf|eot|otf|woff|mov|mp3|mp4|webm|flv|ttf|rss|atom|jpg|jpeg|gif|png|ico|bmp|mid|midi|wav|rtf|css|js|jar)$ {
@@ -33,7 +33,7 @@ server {
         include fastcgi_params;
         fastcgi_param SCRIPT_FILENAME $request_filename;
     }
-    
+
     error_page 403 /error/404.html;
     error_page 404 /error/404.html;
     error_page 500 502 503 504 505 /error/50x.html;