This commit is contained in:
Lizandro Guarnizo
2026-06-05 09:08:29 -05:00
parent 3a4e10da3f
commit feca07dd79
5 changed files with 158 additions and 27 deletions
+33
View File
@@ -0,0 +1,33 @@
server {
listen 80;
server_name _;
root /app/public;
index index.php;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-Content-Type-Options "nosniff";
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
error_page 404 /index.php;
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_index index.php;
include fastcgi_params;
}
location ~ /\.(?!well-known).* {
deny all;
}
location ~ \.css\.map$ {
deny all;
}
}