Browse Source

Update web_system.stpl

Alexandros Ioannides 6 years ago
parent
commit
ce31bfa7a0
1 changed files with 3 additions and 3 deletions
  1. 3 3
      install/deb/templates/mail/nginx/web_system.stpl

+ 3 - 3
install/deb/templates/mail/nginx/web_system.stpl

@@ -12,12 +12,12 @@ server {
         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;