Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use relative URL for 302 redirect [skip ci] #263

Merged
merged 1 commit into from
May 13, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: use relative URL for 302 redirect [skip ci]
Small tweak for the nginx+vouch single server example:
- use a relative URL for the redirect to vouch's login page
  • Loading branch information
bgehman authored May 13, 2020
commit ba2bc9e34980cfaf154775a984e0ad51fecd4a7c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ http {

location @error401 {
# redirect to Vouch Proxy for login
return 302 http://vouch.yourdomain.com/login?url=$scheme://$http_host$request_uri&vouch-failcount=$auth_resp_failcount&X-Vouch-Token=$auth_resp_jwt&error=$auth_resp_err;
return 302 login?url=$scheme://$http_host$request_uri&vouch-failcount=$auth_resp_failcount&X-Vouch-Token=$auth_resp_jwt&error=$auth_resp_err;
# you usually *want* to redirect to Vouch running behind the same Nginx config proteced by https
# but to get started you can just forward the end user to the port that vouch is running on
}
Expand Down