2020-01-29 21:41:20 +00:00
|
|
|
server {
|
2020-02-18 09:58:55 +00:00
|
|
|
listen 80 default_server;
|
|
|
|
listen [::]:80 default_server;
|
|
|
|
server_name _;
|
|
|
|
return 301 https://$host$request_uri;
|
|
|
|
}
|
2020-02-04 18:55:34 +00:00
|
|
|
|
2020-02-18 09:58:55 +00:00
|
|
|
server {
|
|
|
|
listen 443 ssl http2;
|
|
|
|
listen [::]:443 ssl http2;
|
|
|
|
server_name siasky.net www.siasky.net; # replace with actual server names
|
2020-01-29 21:41:20 +00:00
|
|
|
|
2020-02-20 16:35:07 +00:00
|
|
|
# NOTE: make sure to enable any additional configuration you might need like gzip
|
|
|
|
|
2020-02-18 09:58:55 +00:00
|
|
|
location / {
|
2020-02-20 16:35:07 +00:00
|
|
|
root /home/user/skynet-webportal/public; # path to root of index.html
|
2020-02-04 18:26:48 +00:00
|
|
|
}
|
2020-01-29 21:41:20 +00:00
|
|
|
|
2020-02-18 09:58:55 +00:00
|
|
|
location /skynet/skyfile/ {
|
|
|
|
client_max_body_size 1000M; # make sure to limit the size of upload to a sane value
|
2020-02-26 18:32:08 +00:00
|
|
|
proxy_read_timeout 600;
|
2020-02-18 16:25:03 +00:00
|
|
|
# proxy this call to siad endpoint (make sure the ip is correct)
|
2020-02-26 18:32:08 +00:00
|
|
|
proxy_pass http://127.0.0.1:9980;
|
|
|
|
proxy_set_header Expect $http_expect;
|
|
|
|
proxy_set_header Access-Control-Allow-Origin: *;
|
2020-02-18 16:25:03 +00:00
|
|
|
# make sure to override user agent header - siad requirement
|
|
|
|
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";
|
2020-02-17 14:48:17 +00:00
|
|
|
}
|
|
|
|
|
2020-02-18 15:50:09 +00:00
|
|
|
location ~ "^/([a-zA-Z0-9-_]{46})$" {
|
2020-02-17 14:48:17 +00:00
|
|
|
proxy_read_timeout 600;
|
2020-02-18 16:25:03 +00:00
|
|
|
# proxy this call to siad /skynet/skylink/ endpoint (make sure the ip is correct)
|
2020-02-17 14:48:17 +00:00
|
|
|
proxy_pass http://127.0.0.1:9980/skynet/skylink/$1;
|
|
|
|
proxy_set_header Access-Control-Allow-Origin: *;
|
2020-02-18 09:58:55 +00:00
|
|
|
# make sure to override user agent header - siad requirement
|
2020-02-26 18:32:08 +00:00
|
|
|
proxy_set_header User-Agent: Sia-Agent;
|
2020-01-31 18:26:20 +00:00
|
|
|
}
|
|
|
|
|
2020-02-18 15:50:09 +00:00
|
|
|
location ~ "^/file/([a-zA-Z0-9-_]{46})$" {
|
2020-01-31 18:26:20 +00:00
|
|
|
proxy_read_timeout 600;
|
2020-02-18 09:58:55 +00:00
|
|
|
# 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
|
2020-02-17 14:48:17 +00:00
|
|
|
proxy_pass http://127.0.0.1:9980/skynet/skylink/$1?attachment=true;
|
|
|
|
proxy_set_header Access-Control-Allow-Origin: *;
|
2020-02-18 09:58:55 +00:00
|
|
|
# make sure to override user agent header - siad requirement
|
2020-02-26 18:32:08 +00:00
|
|
|
proxy_set_header User-Agent: Sia-Agent;
|
2020-01-31 18:26:20 +00:00
|
|
|
}
|
2020-02-18 09:58:55 +00:00
|
|
|
|
|
|
|
# SLL CERTIFICATES BELOW THIS LINE
|
|
|
|
}
|