first commit

This commit is contained in:
2026-04-02 15:13:15 +05:30
commit 24b759888a
6 changed files with 251 additions and 0 deletions

18
nginx/default.conf Normal file
View File

@@ -0,0 +1,18 @@
server {
listen 80;
server_name localhost;
root /var/www/html;
index index.html index.php;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass number-php:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}