2020-01-29 21:41:20 +00:00
|
|
|
server {
|
2020-02-04 18:55:34 +00:00
|
|
|
listen 443 ssl;
|
|
|
|
listen [::]:443 ssl;
|
2020-01-29 21:41:20 +00:00
|
|
|
|
2020-02-04 18:55:34 +00:00
|
|
|
server_name siasky.net www.siasky.net;
|
|
|
|
|
|
|
|
location / {
|
2020-01-31 18:26:20 +00:00
|
|
|
client_max_body_size 1000M;
|
2020-02-04 18:26:48 +00:00
|
|
|
|
2020-01-31 18:26:20 +00:00
|
|
|
#post_max_size 1000M;
|
2020-02-18 08:48:24 +00:00
|
|
|
root /home/user/skynet-webportal/packages/skynet/build;
|
2020-02-04 18:26:48 +00:00
|
|
|
}
|
2020-01-29 21:41:20 +00:00
|
|
|
|
2020-02-04 18:26:48 +00:00
|
|
|
location ^~ /api/ {
|
2020-01-31 18:26:20 +00:00
|
|
|
client_max_body_size 1000M;
|
2020-02-04 18:26:48 +00:00
|
|
|
|
2020-01-31 18:26:20 +00:00
|
|
|
#post_max_size 1000M;
|
|
|
|
proxy_read_timeout 600;
|
|
|
|
rewrite ^/api/(.*)$ /$1 break;
|
2020-02-04 18:26:48 +00:00
|
|
|
proxy_pass http://127.0.0.1:4000/;
|
|
|
|
}
|
2020-01-29 21:41:20 +00:00
|
|
|
|
2020-01-31 18:26:20 +00:00
|
|
|
location ~ "^/[a-zA-Z0-9-_+/]{46}$" {
|
|
|
|
client_max_body_size 1000M;
|
2020-01-29 21:41:20 +00:00
|
|
|
|
2020-01-31 18:26:20 +00:00
|
|
|
#post_max_size 1000M;
|
|
|
|
proxy_read_timeout 600;
|
|
|
|
proxy_set_header User-Agent: "Sia-Agent";
|
|
|
|
proxy_set_header Host: localhost;
|
2020-02-04 18:26:48 +00:00
|
|
|
proxy_pass http://127.0.0.1:4000/skylink$request_uri;
|
2020-01-31 18:26:20 +00:00
|
|
|
|
|
|
|
sub_filter 'sia://' 'https://$host/';
|
2020-02-04 18:26:48 +00:00
|
|
|
sub_filter_once off;
|
2020-01-31 18:26:20 +00:00
|
|
|
sub_filter_types text/plain;
|
|
|
|
}
|
|
|
|
|
2020-02-04 18:26:48 +00:00
|
|
|
location ~ "^/file/([a-zA-Z0-9-_+/]{46})$" {
|
2020-01-31 18:26:20 +00:00
|
|
|
client_max_body_size 1000M;
|
|
|
|
|
|
|
|
#post_max_size 1000M;
|
|
|
|
proxy_read_timeout 600;
|
|
|
|
proxy_set_header User-Agent: "Sia-Agent";
|
2020-02-04 18:26:48 +00:00
|
|
|
proxy_set_header Host: localhost;
|
|
|
|
proxy_pass http://127.0.0.1:4000/skylink/$1?attachment=true;
|
2020-01-31 18:26:20 +00:00
|
|
|
}
|
2020-01-29 21:41:20 +00:00
|
|
|
}
|