zoraxy icon indicating copy to clipboard operation
zoraxy copied to clipboard

[ENHANCEMENTS] global 'error_page' for HTTP status codes

Open rai68 opened this issue 5 months ago • 2 comments

Is your feature request related to a problem? Please describe. Nope

Describe the solution you'd like Basically with NGINX or NPM I can use proxy_intercept_errors on; to use a global status page for each request where there may be an error.

error_page 404 /index_404.html;
location = /index_404.html {
  alias /data/nginx/custom/index_404.html;
  internal;
}

creates an error page here.

I feel like with Zoraxy you should be able to enable proxy intercept mode with error pages and the internal static web server.

And yea its probably not a normal thing to have global error pages since the reversed service should handle it but i like my global error pages

Describe alternatives you've considered Not really sure of an alternative perhaps use both Zoraxy and NPM behind it.

Additional context

rai68 avatar Sep 20 '24 16:09 rai68