feat: add server configuration templates and custom error/index assets
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user