39 lines
896 B
Nginx Configuration File
39 lines
896 B
Nginx Configuration File
error_log /dev/stderr warn;
|
|
access_log /dev/stdout;
|
|
|
|
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 = /ping {
|
|
return 200 "pong\n";
|
|
add_header Content-Type text/plain;
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|