Files
UAS_WEBGIS_MuhammadFarras_D…/nginx.conf
T
2026-06-10 09:40:14 +07:00

18 lines
398 B
Nginx Configuration File

server {
listen 80;
root /app;
index index.html index.php;
location / {
try_files $uri $uri/ /index.html;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PHP_VALUE "display_errors=0";
}
}