feat: add server configuration templates and custom error/index assets

This commit is contained in:
Ümit Tunç
2026-04-01 22:12:32 +03:00
parent 3164b66f23
commit 6d14569ec6
11 changed files with 403 additions and 3 deletions
+13
View File
@@ -36,6 +36,19 @@ http {
return 404;
}
# Custom Server Assets (Logos, CSS, Error Pages)
location /server-assets/ {
alias "D:/Works/2026/multiphp/public/server-assets/";
access_log off;
allow all;
}
# Error Pages
error_page 404 /server-assets/404.html;
error_page 500 502 503 504 /server-assets/500.html;
location = /server-assets/404.html { internal; }
location = /server-assets/500.html { internal; }
{{PROJECTS}}
location /phpmyadmin {