DO NOT PR THIS BRANCHgit add .!; DONE: add docker config for development

This commit is contained in:
ISMAIL MASSERAN
2026-04-22 12:44:16 +08:00
parent b669d3f04a
commit 9a65d109e7
11 changed files with 325 additions and 2 deletions
+26
View File
@@ -0,0 +1,26 @@
server {
listen 80;
server_name _;
root /var/www/html/public;
index index.php index.html;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_pass app:9000;
fastcgi_index index.php;
}
location ~ /\.(?!well-known).* {
deny all;
}
}