memperbaiki database

This commit is contained in:
2026-06-10 09:40:14 +07:00
parent 1229e495d7
commit d55dc2c420
3 changed files with 23 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
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";
}
}