Another authz path.
This commit is contained in:
parent
d875c6ed1e
commit
e41e74a9a5
|
@ -167,6 +167,21 @@ server {
|
||||||
proxy_pass http://_inception-server;
|
proxy_pass http://_inception-server;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
location /sm/ {
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header Connection ""; # Clear for keepalive
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Host $host;
|
||||||
|
proxy_set_header X-Forwarded-Server $host;
|
||||||
|
proxy_set_header X-Forwarded-Port $server_port;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header X-Original-URI $request_uri;
|
||||||
|
proxy_set_header Authorization "Bearer $auth_token";
|
||||||
|
proxy_set_header remote_user "$remote_user";
|
||||||
|
proxy_pass http://_inception-server;
|
||||||
|
}
|
||||||
|
|
||||||
location /manage/ {
|
location /manage/ {
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
|
Loading…
Reference in New Issue