Update .gitignore + update nginx config
This commit is contained in:
parent
ebd0b5ee48
commit
c370c87496
|
@ -1,2 +1,5 @@
|
||||||
*.swo
|
*.swo
|
||||||
*.swp
|
*.swp
|
||||||
|
|
||||||
|
node_modules
|
||||||
|
**/*/.next
|
|
@ -3,6 +3,7 @@ server {
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
client_max_body_size 1000M;
|
client_max_body_size 1000M;
|
||||||
|
|
||||||
#post_max_size 1000M;
|
#post_max_size 1000M;
|
||||||
proxy_read_timeout 600;
|
proxy_read_timeout 600;
|
||||||
proxy_pass http://127.0.0.1:3000;
|
proxy_pass http://127.0.0.1:3000;
|
||||||
|
@ -15,6 +16,7 @@ server {
|
||||||
|
|
||||||
location ^~ /api/ {
|
location ^~ /api/ {
|
||||||
client_max_body_size 1000M;
|
client_max_body_size 1000M;
|
||||||
|
|
||||||
#post_max_size 1000M;
|
#post_max_size 1000M;
|
||||||
proxy_read_timeout 600;
|
proxy_read_timeout 600;
|
||||||
rewrite ^/api/(.*)$ /$1 break;
|
rewrite ^/api/(.*)$ /$1 break;
|
||||||
|
@ -23,47 +25,25 @@ server {
|
||||||
|
|
||||||
location ~ "^/[a-zA-Z0-9-_+/]{46}$" {
|
location ~ "^/[a-zA-Z0-9-_+/]{46}$" {
|
||||||
client_max_body_size 1000M;
|
client_max_body_size 1000M;
|
||||||
|
|
||||||
#post_max_size 1000M;
|
#post_max_size 1000M;
|
||||||
proxy_read_timeout 600;
|
proxy_read_timeout 600;
|
||||||
proxy_set_header User-Agent: "Sia-Agent";
|
proxy_set_header User-Agent: "Sia-Agent";
|
||||||
proxy_set_header Host: localhost;
|
proxy_set_header Host: localhost;
|
||||||
proxy_pass http://127.0.0.1:4000/skylink$request_uri;
|
proxy_pass http://127.0.0.1:4000/skylink$request_uri;
|
||||||
}
|
|
||||||
|
|
||||||
location ~ "^/web/([a-zA-Z0-9-_+/]{46})$" {
|
|
||||||
client_max_body_size 1000M;
|
|
||||||
#post_max_size 1000M;
|
|
||||||
proxy_read_timeout 600;
|
|
||||||
proxy_set_header User-Agent: "Sia-Agent";
|
|
||||||
proxy_set_header Host: localhost;
|
|
||||||
proxy_pass http://127.0.0.1:4000/skylink/$1;
|
|
||||||
|
|
||||||
sub_filter 'sia://' 'https://$host/';
|
sub_filter 'sia://' 'https://$host/';
|
||||||
sub_filter_once off;
|
sub_filter_once off;
|
||||||
sub_filter_types text/plain;
|
sub_filter_types text/plain;
|
||||||
}
|
}
|
||||||
|
|
||||||
location /direct/ {
|
location ~ "^/file/([a-zA-Z0-9-_+/]{46})$" {
|
||||||
client_max_body_size 1000M;
|
client_max_body_size 1000M;
|
||||||
#post_max_size 1000M;
|
|
||||||
proxy_read_timeout 600;
|
|
||||||
proxy_set_header User-Agent: "Sia-Agent";
|
|
||||||
proxy_pass http://127.0.0.1:9980/skynet/skylink/;
|
|
||||||
}
|
|
||||||
|
|
||||||
location /uploaddirect/ {
|
|
||||||
client_max_body_size 1000M;
|
|
||||||
#post_max_size 1000M;
|
#post_max_size 1000M;
|
||||||
proxy_read_timeout 600;
|
proxy_read_timeout 600;
|
||||||
proxy_set_header User-Agent: "Sia-Agent";
|
proxy_set_header User-Agent: "Sia-Agent";
|
||||||
proxy_pass http://127.0.0.1:9980/renter/linkfile/linkfiles/externaluploads/;
|
proxy_set_header Host: localhost;
|
||||||
}
|
proxy_pass http://127.0.0.1:4000/skylink/$1?attachment=true;
|
||||||
|
|
||||||
location /stream/ {
|
|
||||||
client_max_body_size 1000M;
|
|
||||||
#post_max_size 1000M;
|
|
||||||
proxy_read_timeout 600;
|
|
||||||
proxy_set_header User-Agent: "Sia-Agent";
|
|
||||||
proxy_pass http://127.0.0.1:9980/renter/stream/;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue