mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2024-11-19 09:50:19 +01:00
Fix auth header for JoinMarket (#2988)
This commit is contained in:
parent
109d97eade
commit
99cc8d6b27
@ -19,6 +19,10 @@ server {
|
||||
|
||||
location /api/ {
|
||||
include /etc/nginx/snippets/ssl-proxy-params.conf;
|
||||
|
||||
proxy_set_header Authorization $http_x_jm_authorization;
|
||||
proxy_set_header x-jm-authorization "";
|
||||
|
||||
proxy_pass https://127.0.0.1:28183;
|
||||
}
|
||||
|
||||
|
@ -16,6 +16,10 @@ server {
|
||||
|
||||
location /api/ {
|
||||
include /etc/nginx/snippets/proxy-params.conf;
|
||||
|
||||
proxy_set_header Authorization $http_x_jm_authorization;
|
||||
proxy_set_header x-jm-authorization "";
|
||||
|
||||
proxy_pass https://127.0.0.1:28183;
|
||||
}
|
||||
|
||||
|
@ -19,6 +19,10 @@ server {
|
||||
|
||||
location /api/ {
|
||||
include /etc/nginx/snippets/ssl-proxy-params.conf;
|
||||
|
||||
proxy_set_header Authorization $http_x_jm_authorization;
|
||||
proxy_set_header x-jm-authorization "";
|
||||
|
||||
proxy_pass https://127.0.0.1:28183;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user