diff --git a/sites/paas.conf b/sites/paas.conf index 00459fc..0e2c792 100644 --- a/sites/paas.conf +++ b/sites/paas.conf @@ -3,7 +3,7 @@ server { server_name paas.tronnet.net; include /etc/nginx/snippets/ssl-acme.conf; location /dashboard/ { - #include /etc/nginx/snippets/error-pages.conf; + include /etc/nginx/snippets/error-pages.conf; proxy_pass http://proxmoxaas.dmz:8080/; proxy_redirect default; } @@ -14,4 +14,5 @@ server { location = / { return 301 "/dashboard/"; } + include /etc/nginx/snippets/error-location.conf; } diff --git a/snippets/error-location.conf b/snippets/error-location.conf new file mode 100644 index 0000000..9554358 --- /dev/null +++ b/snippets/error-location.conf @@ -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; +} diff --git a/snippets/error-pages.conf b/snippets/error-pages.conf index 7276672..8ea5d2b 100644 --- a/snippets/error-pages.conf +++ b/snippets/error-pages.conf @@ -9,7 +9,7 @@ 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; -} +#location /ErrorPages/ { +# alias /var/www/html/ErrorPages/; +# internal; +#}