[nginx] Move together deny blocks.
This commit is contained in:
parent
cb600b5a5f
commit
f44cb1ccce
|
@ -100,11 +100,6 @@ server {
|
||||||
|
|
||||||
include mime.types;
|
include mime.types;
|
||||||
|
|
||||||
# block these file types
|
|
||||||
location ~* \.(tpl|md|tgz|log|out)$ {
|
|
||||||
deny all;
|
|
||||||
}
|
|
||||||
|
|
||||||
# statically serve these file types when possible otherwise fall back to
|
# statically serve these file types when possible otherwise fall back to
|
||||||
# front controller allow browser to cache them added .htm for advanced source
|
# front controller allow browser to cache them added .htm for advanced source
|
||||||
# code editor library
|
# code editor library
|
||||||
|
@ -138,6 +133,11 @@ server {
|
||||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# block these file types
|
||||||
|
location ~* \.(tpl|md|tgz|log|out)$ {
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
|
||||||
# deny access to all dot files
|
# deny access to all dot files
|
||||||
location ~ /\. {
|
location ~ /\. {
|
||||||
deny all;
|
deny all;
|
||||||
|
|
Loading…
Reference in a new issue