🗃️ Fixed the .gitignore file 🗃️

.gitignore

01-tor.sh
02-named.sh
03-php-fpm.sh
99-nginx.sh
../../../../../tmp/etc/nginx/nginx.conf
This commit is contained in:
casjay
2025-10-31 12:09:55 -04:00
parent 38bd66d87c
commit 7a31330230
5 changed files with 1120 additions and 669 deletions

View File

@@ -62,6 +62,13 @@ http {
return 200 '{"status":"OK"}';
}
location /healthz {
default_type text/html;
allow all;
access_log off;
return 200 'OK';
}
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name) {