update to newest config version
This commit is contained in:
parent
7b2c61ae67
commit
23a96eb2bf
|
@ -1,47 +1,51 @@
|
||||||
server {
|
server {
|
||||||
listen 443 ssl;
|
listen 80 default_server;
|
||||||
listen [::]:443 ssl;
|
listen [::]:80 default_server;
|
||||||
|
server_name _;
|
||||||
|
return 301 https://$host$request_uri;
|
||||||
|
}
|
||||||
|
|
||||||
server_name siasky.net www.siasky.net;
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
listen [::]:443 ssl http2;
|
||||||
|
server_name siasky.net www.siasky.net; # replace with actual server names
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
client_max_body_size 1000M;
|
root /home/user/skynet-webportal/packages/sia-skynet/build; # path to root of index.html
|
||||||
root /home/user/skynet-webportal/packages/skynet/build;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
location ^~ /api/ {
|
location /skynet/skyfile/ {
|
||||||
client_max_body_size 1000M;
|
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;
|
||||||
rewrite ^/api/(.*)$ /$1 break;
|
proxy_pass http://127.0.0.1:4000;
|
||||||
proxy_pass http://127.0.0.1:4000/;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
location /skynet/skyfile {
|
location ~ "^/([a-zA-Z0-9-_+/]{46})$" {
|
||||||
client_max_body_size 1000M;
|
|
||||||
proxy_read_timeout 600;
|
|
||||||
proxy_pass http://127.0.0.1:9980;
|
|
||||||
proxy_set_header Access-Control-Allow-Origin: *;
|
|
||||||
proxy_set_header User-Agent: Sia-Agent;
|
|
||||||
proxy_set_header Expect $http_expect;
|
|
||||||
# authorization header is base64 encoded user:pass
|
|
||||||
proxy_set_header Authorization "Basic OmQwNWJiMDI0NzE1YWVhMGJiNzM0Y2UwNTdhY2JhZTI3";
|
|
||||||
}
|
|
||||||
|
|
||||||
location ~ "^/([a-zA-Z0-9-_]{46})$" {
|
|
||||||
proxy_read_timeout 600;
|
proxy_read_timeout 600;
|
||||||
|
# proxy this call to siad /skunet/skylink/ endpoint (make sure the ip is correct)
|
||||||
proxy_pass http://127.0.0.1:9980/skynet/skylink/$1;
|
proxy_pass http://127.0.0.1:9980/skynet/skylink/$1;
|
||||||
proxy_set_header Access-Control-Allow-Origin: *;
|
proxy_set_header Access-Control-Allow-Origin: *;
|
||||||
|
# make sure to override user agent header - siad requirement
|
||||||
proxy_set_header User-Agent: Sia-Agent;
|
proxy_set_header User-Agent: Sia-Agent;
|
||||||
# authorization header is base64 encoded user:pass
|
# replace BASE64_AUTHENTICATION with base64 encoded <user>:<password>
|
||||||
proxy_set_header Authorization "Basic OjY3MDAxYWY5OGRjNzk1YjEyZTEwYTgxM2IwYjc2ZmRh";
|
# 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})$" {
|
||||||
proxy_read_timeout 600;
|
proxy_read_timeout 600;
|
||||||
|
# proxy this call to siad /skunet/skylink/ endpoint (make sure the ip is correct)
|
||||||
|
# this alias also adds attachment=true url param to force download the file
|
||||||
proxy_pass http://127.0.0.1:9980/skynet/skylink/$1?attachment=true;
|
proxy_pass http://127.0.0.1:9980/skynet/skylink/$1?attachment=true;
|
||||||
proxy_set_header Access-Control-Allow-Origin: *;
|
proxy_set_header Access-Control-Allow-Origin: *;
|
||||||
|
# make sure to override user agent header - siad requirement
|
||||||
proxy_set_header User-Agent: Sia-Agent;
|
proxy_set_header User-Agent: Sia-Agent;
|
||||||
# authorization header is base64 encoded user:pass
|
# replace BASE64_AUTHENTICATION with base64 encoded <user>:<password>
|
||||||
proxy_set_header Authorization "Basic OjY3MDAxYWY5OGRjNzk1YjEyZTEwYTgxM2IwYjc2ZmRh";
|
# 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
|
||||||
}
|
}
|
Reference in New Issue