From 930bb6f817d1ffe8eba3d7442eb3a3a2a334a683 Mon Sep 17 00:00:00 2001 From: Mitesh Shah Date: Fri, 20 Dec 2013 20:10:51 +0530 Subject: [PATCH] Remove Unwated Tabs --- etc/nginx/common/locations.conf | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/etc/nginx/common/locations.conf b/etc/nginx/common/locations.conf index 47a7e687..e6506394 100644 --- a/etc/nginx/common/locations.conf +++ b/etc/nginx/common/locations.conf @@ -15,9 +15,9 @@ location = /robots.txt { # Cache Static Files For As Long As Possible location ~* \.(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|css|rss|atom|js|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ { - access_log off; - log_not_found off; - expires max; + access_log off; + log_not_found off; + expires max; } @@ -44,15 +44,15 @@ location /ee/ { # PMA Settings location /pma { - rewrite ^/* /ee/pma last; + rewrite ^/* /ee/pma last; } location /phpMyAdmin { - rewrite ^/* /ee/pma last; + rewrite ^/* /ee/pma last; } location /phpmyadmin { - rewrite ^/* /ee/pma last; + rewrite ^/* /ee/pma last; } @@ -94,5 +94,5 @@ location ~* ^.+\.(bak|log|old|orig|original|php#|php~|php_bak|save|swo|swp)$ { # Return 403 Forbidden For readme.(txt|html) or license.(txt|html) if ($request_uri ~* "^.+(readme|license)\.(txt|html)$") { - return 403; + return 403; }