Refactor nginx.conf for cleaner configuration
This commit is contained in:
+13
-19
@@ -1,20 +1,14 @@
|
|||||||
server {
|
location / {
|
||||||
listen 80;
|
try_files $uri $uri/ /index.php?$query_string;
|
||||||
root /app/public;
|
}
|
||||||
index index.php index.html;
|
|
||||||
|
location ~ \.php$ {
|
||||||
location / {
|
fastcgi_pass 127.0.0.1:9000;
|
||||||
try_files $uri $uri/ /index.php?$query_string;
|
fastcgi_index index.php;
|
||||||
}
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||||
|
include fastcgi_params;
|
||||||
location ~ \.php$ {
|
}
|
||||||
fastcgi_pass 127.0.0.1:9000;
|
|
||||||
fastcgi_index index.php;
|
location ~ /\.ht {
|
||||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
deny all;
|
||||||
include fastcgi_params;
|
|
||||||
}
|
|
||||||
|
|
||||||
location ~ /\.ht {
|
|
||||||
deny all;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user