Files
pos_heidiver/docker/nginx.conf
T
2026-06-05 16:31:34 -05:00

33 lines
769 B
Nginx Configuration File

error_log /dev/stderr warn;
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;
fastcgi_param APP_ENV production;
}
location ~ /\.(?!well-known).* {
deny all;
}
}