remove redundant Authorization header from GET endpoints
This commit is contained in:
parent
ddd332c177
commit
b6d6b655c3
|
@ -18,18 +18,17 @@ server {
|
||||||
|
|
||||||
location /skynet/skyfile/ {
|
location /skynet/skyfile/ {
|
||||||
client_max_body_size 1000M; # make sure to limit the size of upload to a sane value
|
client_max_body_size 1000M; # make sure to limit the size of upload to a sane value
|
||||||
proxy_read_timeout 600;
|
proxy_read_timeout 600;
|
||||||
# proxy this call to siad endpoint (make sure the ip is correct)
|
# proxy this call to siad endpoint (make sure the ip is correct)
|
||||||
proxy_pass http://127.0.0.1:9980;
|
proxy_pass http://127.0.0.1:9980;
|
||||||
proxy_set_header Expect $http_expect;
|
proxy_set_header Expect $http_expect;
|
||||||
proxy_set_header Access-Control-Allow-Origin: *;
|
proxy_set_header Access-Control-Allow-Origin: *;
|
||||||
# make sure to override user agent header - siad requirement
|
# make sure to override user agent header - siad requirement
|
||||||
proxy_set_header User-Agent: Sia-Agent;
|
proxy_set_header User-Agent: Sia-Agent;
|
||||||
# replace BASE64_AUTHENTICATION with base64 encoded <user>:<password>
|
# replace BASE64_AUTHENTICATION with base64 encoded <user>:<password>
|
||||||
# for sia user is empty so it's just :<password>
|
# for sia user is empty so it's just :<password>
|
||||||
# to generate the passcode use https://www.base64encode.org or any other base64 encoder
|
# to generate the passcode use https://www.base64encode.org or any other base64 encoder
|
||||||
proxy_set_header Authorization "Basic BASE64_AUTHENTICATION";
|
proxy_set_header Authorization "Basic BASE64_AUTHENTICATION";
|
||||||
proxy_pass_header Authorization;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ "^/([a-zA-Z0-9-_]{46})$" {
|
location ~ "^/([a-zA-Z0-9-_]{46})$" {
|
||||||
|
@ -39,10 +38,6 @@ server {
|
||||||
proxy_set_header Access-Control-Allow-Origin: *;
|
proxy_set_header Access-Control-Allow-Origin: *;
|
||||||
# make sure to override user agent header - siad requirement
|
# make sure to override user agent header - siad requirement
|
||||||
proxy_set_header User-Agent: Sia-Agent;
|
proxy_set_header User-Agent: Sia-Agent;
|
||||||
# replace BASE64_AUTHENTICATION with base64 encoded <user>:<password>
|
|
||||||
# for sia user is empty so it's just :<password>
|
|
||||||
# to generate the passcode use https://www.base64encode.org or any other base64 encoder
|
|
||||||
proxy_set_header Authorization "Basic BASE64_AUTHENTICATION";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ "^/file/([a-zA-Z0-9-_]{46})$" {
|
location ~ "^/file/([a-zA-Z0-9-_]{46})$" {
|
||||||
|
@ -53,10 +48,6 @@ server {
|
||||||
proxy_set_header Access-Control-Allow-Origin: *;
|
proxy_set_header Access-Control-Allow-Origin: *;
|
||||||
# make sure to override user agent header - siad requirement
|
# make sure to override user agent header - siad requirement
|
||||||
proxy_set_header User-Agent: Sia-Agent;
|
proxy_set_header User-Agent: Sia-Agent;
|
||||||
# replace BASE64_AUTHENTICATION with base64 encoded <user>:<password>
|
|
||||||
# for sia user is empty so it's just :<password>
|
|
||||||
# to generate the passcode use https://www.base64encode.org or any other base64 encoder
|
|
||||||
proxy_set_header Authorization "Basic BASE64_AUTHENTICATION";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# SLL CERTIFICATES BELOW THIS LINE
|
# SLL CERTIFICATES BELOW THIS LINE
|
||||||
|
|
Reference in New Issue