Forked from ilguzin/nginx_redirect_2named_location
Last active
November 5, 2024 14:34
-
-
Save inso/66135b102a3fe2f8d47f to your computer and use it in GitHub Desktop.
NGINX: Redirect from current location into named location
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Solution 1 | |
# Use only codes greater than 418, do not use common status codes 404, 402, 403, etc | |
location /location1 { | |
error_page 463 = @app; return 463; | |
} | |
# Solution 2 (drawbacks unknown) | |
location /location2 { | |
try_files /dev/null @app; | |
} | |
location @app { | |
proxy_pass http://127.0.0.1:82; | |
proxy_redirect off; | |
include proxy_params; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment