temporary fix for error pages

This commit is contained in:
Arthur Lu 2023-10-12 04:44:06 +00:00
parent b6fb15d69e
commit 67af977239
3 changed files with 21 additions and 5 deletions

View File

@ -3,7 +3,7 @@ server {
server_name paas.tronnet.net; server_name paas.tronnet.net;
include /etc/nginx/snippets/ssl-acme.conf; include /etc/nginx/snippets/ssl-acme.conf;
location /dashboard/ { location /dashboard/ {
#include /etc/nginx/snippets/error-pages.conf; include /etc/nginx/snippets/error-pages.conf;
proxy_pass http://proxmoxaas.dmz:8080/; proxy_pass http://proxmoxaas.dmz:8080/;
proxy_redirect default; proxy_redirect default;
} }
@ -14,4 +14,5 @@ server {
location = / { location = / {
return 301 "/dashboard/"; return 301 "/dashboard/";
} }
include /etc/nginx/snippets/error-location.conf;
} }

View File

@ -0,0 +1,15 @@
#proxy_intercept_errors on;
#error_page 400 /ErrorPages/HTTP400.html;
#error_page 401 /ErrorPages/HTTP401.html;
#error_page 403 /ErrorPages/HTTP403.html;
#error_page 404 /ErrorPages/HTTP404.html;
#error_page 500 /ErrorPages/HTTP500.html;
#error_page 501 /ErrorPages/HTTP501.html;
#error_page 502 /ErrorPages/HTTP502.html;
#error_page 503 /ErrorPages/HTTP503.html;
location /ErrorPages/ {
alias /var/www/html/ErrorPages/;
internal;
}

View File

@ -9,7 +9,7 @@ error_page 501 /ErrorPages/HTTP501.html;
error_page 502 /ErrorPages/HTTP502.html; error_page 502 /ErrorPages/HTTP502.html;
error_page 503 /ErrorPages/HTTP503.html; error_page 503 /ErrorPages/HTTP503.html;
location /ErrorPages/ { #location /ErrorPages/ {
alias /var/www/html/ErrorPages/; # alias /var/www/html/ErrorPages/;
internal; # internal;
} #}