Refactor nginx.conf for cleaner configuration

This commit is contained in:
Fernando
2026-05-02 18:01:34 -06:00
committed by GitHub
parent 881e67fb12
commit 5d16da08f8
+7 -13
View File
@@ -1,20 +1,14 @@
server {
listen 80;
root /app/public;
index index.php index.html;
location / {
location / {
try_files $uri $uri/ /index.php?$query_string;
}
}
location ~ \.php$ {
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
location ~ /\.ht {
deny all;
}