Send 200 instead of 302 to make the browser accept the error page correctly

This commit is contained in:
Johannes Zellner
2015-07-17 11:16:20 +02:00
parent 60263f719b
commit 14f1592451
+1 -1
View File
@@ -37,7 +37,7 @@ server {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
error_page 500 502 503 504 =302 @appstatus;
error_page 500 502 503 504 =200 @appstatus;
location @appstatus {
internal;
root <%= sourceDir %>/webadmin/dist;