Bypass examples #300
Unanswered
Maynardnaze
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Would anyone mind sharing some oauth bypass examples?
I'm working on opening Notifiarr up without opening ports.
location /notifiarr/api {
proxy_set_header X-Forwarded-For $remote_addr;
set $notifiarr http://192.168.3.33:5454;
proxy_pass $notifiarr$request_uri;
}
location /notifiarr {
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-WebAuth-User $_username;
set $notifiarr http://192.168.3.33:5454;
proxy_pass $notifiarr$request_uri;
}
this is the example nginx.conf shown on notifiarr.
unfortunately, I skipped learning nginx. Went from NPM a couple years ago to Traefik last year.
Beta Was this translation helpful? Give feedback.
All reactions