From 5d16da08f8fcfacba79c8e66cc273b850be800d9 Mon Sep 17 00:00:00 2001 From: Fernando <82854646+FernandosPerez@users.noreply.github.com> Date: Sat, 2 May 2026 18:01:34 -0600 Subject: [PATCH] Refactor nginx.conf for cleaner configuration --- nginx.conf | 32 +++++++++++++------------------- 1 file changed, 13 insertions(+), 19 deletions(-) diff --git a/nginx.conf b/nginx.conf index 18187906..427bf86d 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,20 +1,14 @@ -server { - listen 80; - root /app/public; - index index.php index.html; - - location / { - try_files $uri $uri/ /index.php?$query_string; - } - - 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 / { + try_files $uri $uri/ /index.php?$query_string; +} + +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; }