2020-04-07 11:01:38 +00:00
|
|
|
limit_req_zone $binary_remote_addr zone=stats_by_ip:10m rate=10r/m;
|
|
|
|
limit_conn_zone $binary_remote_addr zone=uploads_by_ip:10m;
|
|
|
|
limit_conn_zone $binary_remote_addr zone=downloads_by_ip:10m;
|
|
|
|
limit_req_status 429;
|
|
|
|
limit_conn_status 429;
|
|
|
|
|
2020-05-22 17:27:59 +00:00
|
|
|
# max_size sets the upper limit of the size of the cache
|
|
|
|
proxy_cache_path /tmp/nginx levels=1:2 keys_zone=skynet:10m inactive=1d max_size=10g use_temp_path=off;
|
2020-05-21 19:59:56 +00:00
|
|
|
|
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-04-07 11:01:38 +00:00
|
|
|
# ddos protection: closing slow connections
|
|
|
|
client_body_timeout 5s;
|
|
|
|
client_header_timeout 5s;
|
|
|
|
|
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-03-18 20:36:30 +00:00
|
|
|
location /stats {
|
2020-04-07 11:01:38 +00:00
|
|
|
limit_req zone=stats_by_ip; # ddos protection: max 10 requests per minute
|
|
|
|
|
2020-03-18 20:36:30 +00:00
|
|
|
proxy_set_header Access-Control-Allow-Origin: *;
|
|
|
|
proxy_set_header User-Agent: Sia-Agent;
|
|
|
|
|
2020-04-07 11:01:38 +00:00
|
|
|
# replace BASE64_AUTHENTICATION with base64 encoded <user>:<password>
|
2020-03-18 20:36:30 +00:00
|
|
|
# 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";
|
|
|
|
proxy_pass http://127.0.0.1:9970/skynet/stats;
|
2020-04-07 11:01:38 +00:00
|
|
|
}
|
2020-03-18 20:36:30 +00:00
|
|
|
|
|
|
|
location /statsdown {
|
2020-04-07 11:01:38 +00:00
|
|
|
limit_req zone=stats_by_ip; # ddos protection: max 10 requests per minute
|
|
|
|
|
2020-03-18 20:36:30 +00:00
|
|
|
proxy_set_header Access-Control-Allow-Origin: *;
|
|
|
|
proxy_set_header User-Agent: Sia-Agent;
|
|
|
|
|
2020-04-07 11:01:38 +00:00
|
|
|
# replace BASE64_AUTHENTICATION with base64 encoded <user>:<password>
|
2020-03-18 20:36:30 +00:00
|
|
|
# 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";
|
|
|
|
proxy_pass http://127.0.0.1:9980/skynet/stats;
|
2020-04-07 11:01:38 +00:00
|
|
|
}
|
2020-03-18 20:36:30 +00:00
|
|
|
|
2020-04-28 15:15:40 +00:00
|
|
|
location /skynet/skyfile {
|
2020-04-07 11:01:38 +00:00
|
|
|
limit_conn uploads_by_ip 10; # ddos protection: max 10 uploads at a time
|
2020-02-18 09:58:55 +00:00
|
|
|
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-03-19 14:38:34 +00:00
|
|
|
|
2020-04-28 15:15:40 +00:00
|
|
|
# Extract 3 sets of 2 characters from $request_id and assign to $dir1, $dir2, $dir3
|
|
|
|
# respectfully. The rest of the $request_id is going to be assigned to $dir4.
|
2020-04-28 19:06:46 +00:00
|
|
|
# We use those variables to automatically generate a unique path for the uploaded file.
|
|
|
|
# This ensures that not all uploaded files end up in the same directory, which is something
|
|
|
|
# that causes performance issues in the renter.
|
2020-04-28 15:15:40 +00:00
|
|
|
# Example path result: /af/24/9b/c5ec894920ccc45634dc9a8065
|
|
|
|
if ($request_id ~* "(\w{2})(\w{2})(\w{2})(\w+)") {
|
|
|
|
set $dir1 $1;
|
|
|
|
set $dir2 $2;
|
|
|
|
set $dir3 $3;
|
|
|
|
set $dir4 $4;
|
|
|
|
}
|
|
|
|
|
2020-02-18 16:25:03 +00:00
|
|
|
# proxy this call to siad endpoint (make sure the ip is correct)
|
2020-03-19 14:38:34 +00:00
|
|
|
#
|
|
|
|
# note that we point uploads to port '9970', do this when you want to
|
|
|
|
# run in a configuration where you have two siad instances, one for
|
|
|
|
# downloads and one for uploads. This drastically improves the up - and
|
|
|
|
# download speed of your portal. When running your portal in this double
|
|
|
|
# siad setup, make sure only the download portal runs in 'portal mode'.
|
|
|
|
# The upload siad can be run in normal mode. Set the port to '9980' if
|
|
|
|
# you do not want to run your portal in the double siad setup.
|
2020-05-08 07:49:37 +00:00
|
|
|
proxy_pass http://127.0.0.1:9970/skynet/skyfile/$dir1/$dir2/$dir3/$dir4$is_args$args;
|
2020-03-19 14:38:34 +00:00
|
|
|
|
2020-02-26 18:32:08 +00:00
|
|
|
proxy_set_header Expect $http_expect;
|
2020-03-10 13:15:34 +00:00
|
|
|
add_header Access-Control-Allow-Origin *;
|
|
|
|
proxy_hide_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-03-10 13:36:21 +00:00
|
|
|
location ~ "^/([a-zA-Z0-9-_]{46}(/.*)?)$" {
|
2020-04-07 11:01:38 +00:00
|
|
|
limit_conn downloads_by_ip 10; # ddos protection: max 10 downloads at a time
|
|
|
|
|
2020-04-28 19:46:26 +00:00
|
|
|
# we need to explicitly use set directive here because $1 will contain the skylink with
|
|
|
|
# decoded whitespaces and set will re-encode it for us before passing it to proxy_pass
|
|
|
|
set $skylink $1;
|
|
|
|
|
2020-02-17 14:48:17 +00:00
|
|
|
proxy_read_timeout 600;
|
2020-04-28 19:46:26 +00:00
|
|
|
# proxy this call to siad /skynet/skylink/ endpoint (make sure the ip is correct)
|
|
|
|
proxy_pass http://127.0.0.1:9980/skynet/skylink/$skylink$is_args$args;
|
2020-02-17 14:48:17 +00:00
|
|
|
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-03-09 11:21:00 +00:00
|
|
|
|
2020-03-12 14:15:48 +00:00
|
|
|
# make sure the Skynet-File-Metadata header gets exposed in the response
|
|
|
|
add_header Access-Control-Expose-Headers skynet-file-metadata;
|
|
|
|
|
2020-03-09 11:21:00 +00:00
|
|
|
# if you are expecting large headers (ie. Skynet-Skyfile-Metadata), tune these values to your needs
|
|
|
|
#proxy_buffer_size 128k;
|
|
|
|
#proxy_buffers 4 128k;
|
2020-04-23 18:02:02 +00:00
|
|
|
|
|
|
|
# cache frequent (> 10) downloads for 24 hours
|
|
|
|
proxy_cache skynet;
|
|
|
|
proxy_cache_key $uri;
|
|
|
|
proxy_cache_min_uses 10;
|
|
|
|
proxy_cache_valid 200 1440m;
|
2020-01-31 18:26:20 +00:00
|
|
|
}
|
|
|
|
|
2020-03-10 13:36:21 +00:00
|
|
|
location ~ "^/file/([a-zA-Z0-9-_]{46}(/.*)?)$" {
|
2020-04-07 11:01:38 +00:00
|
|
|
limit_conn downloads_by_ip 10; # ddos protection: max 10 downloads at a time
|
|
|
|
|
2020-04-28 19:46:26 +00:00
|
|
|
# we need to explicitly use set directive here because $1 will contain the skylink with
|
|
|
|
# decoded whitespaces and set will re-encode it for us before passing it to proxy_pass
|
|
|
|
set $skylink $1;
|
|
|
|
|
2020-01-31 18:26:20 +00:00
|
|
|
proxy_read_timeout 600;
|
2020-04-29 16:13:38 +00:00
|
|
|
# proxy this call to siad /skynet/skylink/ endpoint (make sure the ip is correct)
|
2020-04-28 19:46:26 +00:00
|
|
|
# this alias also adds attachment=true url param to force download the file
|
|
|
|
proxy_pass http://127.0.0.1:9980/skynet/skylink/$skylink?attachment=true&$args;
|
2020-02-17 14:48:17 +00:00
|
|
|
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-03-09 11:21:00 +00:00
|
|
|
|
2020-03-12 14:15:48 +00:00
|
|
|
# make sure the Skynet-File-Metadata header gets exposed in the response
|
|
|
|
add_header Access-Control-Expose-Headers skynet-file-metadata;
|
|
|
|
|
2020-03-09 11:21:00 +00:00
|
|
|
# if you are expecting large headers (ie. Skynet-Skyfile-Metadata), tune these values to your needs
|
|
|
|
#proxy_buffer_size 128k;
|
|
|
|
#proxy_buffers 4 128k;
|
2020-04-23 18:02:02 +00:00
|
|
|
|
|
|
|
# cache frequent (> 10) downloads for 24 hours
|
|
|
|
proxy_cache skynet;
|
|
|
|
proxy_cache_key $uri;
|
|
|
|
proxy_cache_min_uses 10;
|
|
|
|
proxy_cache_valid 200 1440m;
|
2020-01-31 18:26:20 +00:00
|
|
|
}
|
2020-02-18 09:58:55 +00:00
|
|
|
|
|
|
|
# SLL CERTIFICATES BELOW THIS LINE
|
2020-03-18 20:36:30 +00:00
|
|
|
}
|