2021-08-27 12:15:22 +00:00
|
|
|
listen 443 ssl http2;
|
|
|
|
listen [::]:443 ssl http2;
|
|
|
|
|
|
|
|
include /etc/nginx/conf.d/include/ssl-settings;
|
|
|
|
include /etc/nginx/conf.d/include/init-optional-variables;
|
|
|
|
|
|
|
|
# ddos protection: closing slow connections
|
|
|
|
client_body_timeout 1h;
|
|
|
|
client_header_timeout 1h;
|
|
|
|
send_timeout 1h;
|
|
|
|
|
|
|
|
proxy_connect_timeout 1h;
|
|
|
|
proxy_read_timeout 1h;
|
|
|
|
proxy_send_timeout 1h;
|
|
|
|
|
|
|
|
# Increase the body buffer size, to ensure the internal POSTs can always
|
|
|
|
# parse the full POST contents into memory.
|
|
|
|
client_body_buffer_size 128k;
|
|
|
|
client_max_body_size 128k;
|
|
|
|
|
|
|
|
# legacy endpoint rewrite
|
|
|
|
rewrite ^/portals /skynet/portals permanent;
|
|
|
|
rewrite ^/stats /skynet/stats permanent;
|
|
|
|
rewrite ^/skynet/blacklist /skynet/blocklist permanent;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
include /etc/nginx/conf.d/include/cors;
|
|
|
|
|
2021-10-18 14:25:59 +00:00
|
|
|
set $skylink "0404dsjvti046fsua4ktor9grrpe76erq9jot9cvopbhsvsu76r4r30";
|
|
|
|
set $path $uri;
|
|
|
|
|
|
|
|
include /etc/nginx/conf.d/include/location-skylink;
|
|
|
|
|
|
|
|
proxy_intercept_errors on;
|
|
|
|
error_page 400 404 490 500 502 503 504 =200 @fallback;
|
|
|
|
}
|
|
|
|
|
|
|
|
location @fallback {
|
2021-08-27 12:15:22 +00:00
|
|
|
proxy_pass http://website:9000;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /docs {
|
|
|
|
proxy_pass https://skynetlabs.github.io/skynet-docs;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /skynet/blocklist {
|
|
|
|
include /etc/nginx/conf.d/include/cors;
|
|
|
|
|
|
|
|
proxy_cache skynet;
|
|
|
|
proxy_cache_valid any 1m; # cache blocklist for 1 minute
|
|
|
|
proxy_set_header User-Agent: Sia-Agent;
|
|
|
|
proxy_pass http://sia:9980/skynet/blocklist;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /skynet/portals {
|
|
|
|
include /etc/nginx/conf.d/include/cors;
|
|
|
|
|
|
|
|
proxy_cache skynet;
|
|
|
|
proxy_cache_valid any 1m; # cache portals for 1 minute
|
|
|
|
proxy_set_header User-Agent: Sia-Agent;
|
|
|
|
proxy_pass http://sia:9980/skynet/portals;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /skynet/stats {
|
|
|
|
include /etc/nginx/conf.d/include/cors;
|
|
|
|
|
|
|
|
proxy_cache skynet;
|
|
|
|
proxy_cache_valid any 1m; # cache stats for 1 minute
|
|
|
|
proxy_set_header User-Agent: Sia-Agent;
|
|
|
|
proxy_read_timeout 5m; # extend the read timeout
|
|
|
|
proxy_pass http://sia:9980/skynet/stats;
|
|
|
|
}
|
|
|
|
|
2021-12-06 11:49:58 +00:00
|
|
|
# Define path for server load endpoint
|
|
|
|
location /serverload {
|
|
|
|
# Define root directory in the nginx container to load file from
|
|
|
|
root /usr/local/share;
|
|
|
|
|
2021-12-14 09:10:15 +00:00
|
|
|
# including this because of peer pressure from the other routes
|
2021-12-06 11:49:58 +00:00
|
|
|
include /etc/nginx/conf.d/include/cors;
|
|
|
|
|
|
|
|
# tell nginx to expect json
|
|
|
|
default_type 'application/json';
|
|
|
|
|
|
|
|
# Allow for /serverload to load /serverload.json file
|
|
|
|
try_files $uri $uri.json =404;
|
|
|
|
}
|
|
|
|
|
2021-08-27 12:15:22 +00:00
|
|
|
location /skynet/health {
|
|
|
|
include /etc/nginx/conf.d/include/cors;
|
|
|
|
|
|
|
|
proxy_cache skynet;
|
|
|
|
proxy_cache_key $request_uri; # use whole request uri (uri + args) as cache key
|
|
|
|
proxy_cache_valid any 1m; # cache responses for 1 minute
|
|
|
|
proxy_set_header User-Agent: Sia-Agent;
|
|
|
|
proxy_read_timeout 5m; # extend the read timeout
|
|
|
|
proxy_pass http://sia:9980;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /health-check {
|
|
|
|
include /etc/nginx/conf.d/include/cors;
|
|
|
|
|
|
|
|
access_log off; # do not log traffic to health-check endpoint
|
|
|
|
|
|
|
|
proxy_pass http://10.10.10.60:3100; # hardcoded ip because health-check waits for nginx
|
|
|
|
}
|
|
|
|
|
2021-12-01 15:23:56 +00:00
|
|
|
location /abuse/ {
|
2021-12-17 15:00:01 +00:00
|
|
|
include /etc/nginx/conf.d/include/cors;
|
2021-12-01 15:51:40 +00:00
|
|
|
|
2021-12-14 09:10:15 +00:00
|
|
|
proxy_pass http://10.10.10.110:4000/;
|
2021-12-01 11:56:25 +00:00
|
|
|
}
|
|
|
|
|
2021-12-01 15:23:56 +00:00
|
|
|
location /report-abuse {
|
2021-12-02 16:23:37 +00:00
|
|
|
# TODO: do a proxy_pass
|
2021-12-02 13:05:41 +00:00
|
|
|
return https://0404guluqu38oaqapku91ed11kbhkge55smh9lhjukmlrj37lfpm8no.siasky.net;
|
2021-12-01 10:18:25 +00:00
|
|
|
}
|
|
|
|
|
2021-08-27 12:15:22 +00:00
|
|
|
location /hns {
|
|
|
|
# match the request_uri and extract the hns domain and anything that is passed in the uri after it
|
|
|
|
# example: /hns/something/foo/bar matches:
|
|
|
|
# > hns_domain: something
|
|
|
|
# > path: /foo/bar/
|
|
|
|
set_by_lua_block $hns_domain { return string.match(ngx.var.uri, "/hns/([^/?]+)") }
|
|
|
|
set_by_lua_block $path { return string.match(ngx.var.uri, "/hns/[^/?]+(.*)") }
|
|
|
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
include /etc/nginx/conf.d/include/location-hns;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /hnsres {
|
|
|
|
include /etc/nginx/conf.d/include/cors;
|
|
|
|
|
|
|
|
proxy_pass http://handshake-api:3100;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /skynet/registry {
|
|
|
|
include /etc/nginx/conf.d/include/location-skynet-registry;
|
|
|
|
}
|
|
|
|
|
2021-11-03 08:57:55 +00:00
|
|
|
location /skynet/restore {
|
2021-11-03 09:17:44 +00:00
|
|
|
include /etc/nginx/conf.d/include/cors;
|
2021-11-03 13:51:10 +00:00
|
|
|
include /etc/nginx/conf.d/include/sia-auth;
|
2021-11-03 09:17:44 +00:00
|
|
|
|
2021-11-03 08:57:55 +00:00
|
|
|
client_max_body_size 5M;
|
2021-11-03 13:22:05 +00:00
|
|
|
|
2021-11-03 14:06:09 +00:00
|
|
|
# increase request timeouts
|
|
|
|
proxy_read_timeout 600;
|
|
|
|
proxy_send_timeout 600;
|
|
|
|
|
|
|
|
proxy_request_buffering off; # stream uploaded files through the proxy as it comes in
|
|
|
|
proxy_set_header Expect $http_expect;
|
2021-11-03 13:22:05 +00:00
|
|
|
proxy_set_header User-Agent: Sia-Agent;
|
2021-11-03 14:06:09 +00:00
|
|
|
|
|
|
|
# proxy this call to siad endpoint (make sure the ip is correct)
|
2021-11-03 16:16:28 +00:00
|
|
|
proxy_pass http://sia:9980;
|
2021-11-03 08:57:55 +00:00
|
|
|
}
|
|
|
|
|
2021-08-27 12:15:22 +00:00
|
|
|
location /skynet/skyfile {
|
|
|
|
include /etc/nginx/conf.d/include/cors;
|
|
|
|
include /etc/nginx/conf.d/include/sia-auth;
|
|
|
|
include /etc/nginx/conf.d/include/track-upload;
|
|
|
|
include /etc/nginx/conf.d/include/generate-siapath;
|
|
|
|
|
2021-11-12 17:10:38 +00:00
|
|
|
limit_req zone=uploads_by_ip burst=10 nodelay;
|
2021-08-27 12:15:22 +00:00
|
|
|
limit_req zone=uploads_by_ip_throttled;
|
|
|
|
|
2021-11-12 17:10:38 +00:00
|
|
|
limit_conn upload_conn 5;
|
2021-08-27 12:15:22 +00:00
|
|
|
limit_conn upload_conn_rl 1;
|
|
|
|
|
2021-11-08 15:37:32 +00:00
|
|
|
client_max_body_size 5000M; # make sure to limit the size of upload to a sane value
|
2021-08-27 12:15:22 +00:00
|
|
|
|
|
|
|
# increase request timeouts
|
|
|
|
proxy_read_timeout 600;
|
|
|
|
proxy_send_timeout 600;
|
|
|
|
|
|
|
|
proxy_request_buffering off; # stream uploaded files through the proxy as it comes in
|
|
|
|
proxy_set_header Expect $http_expect;
|
|
|
|
proxy_set_header User-Agent: Sia-Agent;
|
|
|
|
|
|
|
|
# access_by_lua_block {
|
|
|
|
# -- this block runs only when accounts are enabled
|
|
|
|
# if os.getenv("ACCOUNTS_ENABLED") ~= "true" then return end
|
|
|
|
|
|
|
|
# ngx.var.upload_limit_rate = 5 * 1024 * 1024
|
|
|
|
# local res = ngx.location.capture("/accounts/user", { copy_all_vars = true })
|
|
|
|
# if res.status == ngx.HTTP_OK then
|
|
|
|
# local json = require('cjson')
|
|
|
|
# local user = json.decode(res.body)
|
|
|
|
# ngx.var.upload_limit_rate = ngx.var.upload_limit_rate * (user.tier + 1)
|
|
|
|
# end
|
|
|
|
# }
|
|
|
|
|
|
|
|
# proxy this call to siad endpoint (make sure the ip is correct)
|
|
|
|
proxy_pass http://sia:9980/skynet/skyfile/$dir1/$dir2/$dir3$is_args$args;
|
|
|
|
}
|
|
|
|
|
|
|
|
# endpoint implementing resumable file uploads open protocol https://tus.io
|
|
|
|
location /skynet/tus {
|
2021-09-10 15:09:09 +00:00
|
|
|
include /etc/nginx/conf.d/include/cors-headers; # include cors headers but do not overwrite OPTIONS response
|
2021-08-27 12:15:22 +00:00
|
|
|
include /etc/nginx/conf.d/include/track-upload;
|
|
|
|
|
2021-11-12 17:10:38 +00:00
|
|
|
limit_req zone=uploads_by_ip burst=10 nodelay;
|
2021-11-11 15:59:51 +00:00
|
|
|
limit_req zone=uploads_by_ip_throttled;
|
|
|
|
|
2021-11-12 17:10:38 +00:00
|
|
|
limit_conn upload_conn 5;
|
2021-11-11 15:59:51 +00:00
|
|
|
limit_conn upload_conn_rl 1;
|
|
|
|
|
2021-08-27 12:15:22 +00:00
|
|
|
# TUS chunks size is 40M + leaving 10M of breathing room
|
|
|
|
client_max_body_size 50M;
|
2021-11-03 08:57:55 +00:00
|
|
|
|
|
|
|
# Those timeouts need to be elevated since skyd can stall reading
|
2021-08-27 12:15:22 +00:00
|
|
|
# data for a while when overloaded which would terminate connection
|
|
|
|
client_body_timeout 1h;
|
|
|
|
proxy_send_timeout 1h;
|
|
|
|
|
|
|
|
# Add X-Forwarded-* headers
|
|
|
|
proxy_set_header X-Forwarded-Host $host;
|
|
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
|
|
|
|
|
|
# rewrite proxy request to use correct host uri from env variable (required to return correct location header)
|
|
|
|
set_by_lua $SKYNET_SERVER_API 'return os.getenv("SKYNET_SERVER_API")';
|
|
|
|
proxy_redirect $scheme://$host $SKYNET_SERVER_API;
|
|
|
|
|
|
|
|
# proxy /skynet/tus requests to siad endpoint with all arguments
|
|
|
|
proxy_pass http://sia:9980;
|
|
|
|
|
|
|
|
# set max upload size dynamically based on account limits
|
|
|
|
rewrite_by_lua_block {
|
2021-11-30 12:43:17 +00:00
|
|
|
-- set default limit value to 5 GB
|
2021-11-08 15:37:32 +00:00
|
|
|
ngx.req.set_header("SkynetMaxUploadSize", 5368709120)
|
2021-08-27 12:15:22 +00:00
|
|
|
|
|
|
|
-- this block runs only when accounts are enabled
|
|
|
|
if os.getenv("ACCOUNTS_ENABLED") ~= "true" then return end
|
|
|
|
|
2021-09-02 08:16:41 +00:00
|
|
|
local httpc = require("resty.http").new()
|
|
|
|
|
2021-08-27 12:15:22 +00:00
|
|
|
-- fetch account limits and set max upload size accordingly
|
|
|
|
local res, err = httpc:request_uri("http://10.10.10.70:3000/user/limits", {
|
2021-08-27 16:33:27 +00:00
|
|
|
headers = { ["Cookie"] = "skynet-jwt=" .. ngx.var.skynet_jwt }
|
2021-08-27 12:15:22 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
-- fail gracefully in case /user/limits failed
|
|
|
|
if err or (res and res.status ~= ngx.HTTP_OK) then
|
|
|
|
ngx.log(ngx.ERR, "Failed accounts service request /user/limits: ", err or ("[HTTP " .. res.status .. "] " .. res.body))
|
|
|
|
elseif res and res.status == ngx.HTTP_OK then
|
|
|
|
local json = require('cjson')
|
|
|
|
local limits = json.decode(res.body)
|
|
|
|
ngx.req.set_header("SkynetMaxUploadSize", limits.maxUploadSize)
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
# extract skylink from base64 encoded upload metadata and assign to a proper header
|
|
|
|
header_filter_by_lua_block {
|
|
|
|
ngx.header["Skynet-Portal-Api"] = os.getenv("SKYNET_PORTAL_API")
|
|
|
|
ngx.header["Skynet-Server-Api"] = os.getenv("SKYNET_SERVER_API")
|
|
|
|
|
|
|
|
if ngx.header["Upload-Metadata"] then
|
|
|
|
local encodedSkylink = string.match(ngx.header["Upload-Metadata"], "Skylink ([^,?]+)")
|
|
|
|
|
|
|
|
if encodedSkylink then
|
|
|
|
ngx.header["Skynet-Skylink"] = ngx.decode_base64(encodedSkylink)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
location /skynet/pin {
|
|
|
|
include /etc/nginx/conf.d/include/cors;
|
|
|
|
include /etc/nginx/conf.d/include/sia-auth;
|
|
|
|
include /etc/nginx/conf.d/include/track-upload;
|
|
|
|
include /etc/nginx/conf.d/include/generate-siapath;
|
|
|
|
|
2021-11-12 17:10:38 +00:00
|
|
|
limit_req zone=uploads_by_ip burst=10 nodelay;
|
2021-11-11 15:59:51 +00:00
|
|
|
limit_req zone=uploads_by_ip_throttled;
|
|
|
|
|
2021-11-12 17:10:38 +00:00
|
|
|
limit_conn upload_conn 5;
|
2021-11-11 15:59:51 +00:00
|
|
|
limit_conn upload_conn_rl 1;
|
|
|
|
|
2021-08-27 12:15:22 +00:00
|
|
|
proxy_set_header User-Agent: Sia-Agent;
|
|
|
|
proxy_pass http://sia:9980$uri?siapath=$dir1/$dir2/$dir3&$args;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /skynet/metadata {
|
|
|
|
include /etc/nginx/conf.d/include/cors;
|
|
|
|
|
2021-08-31 14:39:42 +00:00
|
|
|
header_filter_by_lua_block {
|
|
|
|
ngx.header["Skynet-Portal-Api"] = os.getenv("SKYNET_PORTAL_API")
|
|
|
|
ngx.header["Skynet-Server-Api"] = os.getenv("SKYNET_SERVER_API")
|
2021-11-03 08:57:55 +00:00
|
|
|
}
|
2021-08-31 14:39:42 +00:00
|
|
|
|
2021-08-27 12:15:22 +00:00
|
|
|
proxy_set_header User-Agent: Sia-Agent;
|
|
|
|
proxy_pass http://sia:9980;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /skynet/resolve {
|
|
|
|
include /etc/nginx/conf.d/include/cors;
|
|
|
|
|
2021-08-31 14:39:42 +00:00
|
|
|
header_filter_by_lua_block {
|
|
|
|
ngx.header["Skynet-Portal-Api"] = os.getenv("SKYNET_PORTAL_API")
|
|
|
|
ngx.header["Skynet-Server-Api"] = os.getenv("SKYNET_SERVER_API")
|
2021-11-03 08:57:55 +00:00
|
|
|
}
|
2021-08-31 14:39:42 +00:00
|
|
|
|
2021-08-27 12:15:22 +00:00
|
|
|
proxy_set_header User-Agent: Sia-Agent;
|
|
|
|
proxy_pass http://sia:9980;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ "^/(([a-zA-Z0-9-_]{46}|[a-z0-9]{55})(/.*)?)$" {
|
|
|
|
set $skylink $2;
|
|
|
|
set $path $3;
|
|
|
|
|
|
|
|
include /etc/nginx/conf.d/include/location-skylink;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ "^/file/(([a-zA-Z0-9-_]{46}|[a-z0-9]{55})(/.*)?)$" {
|
|
|
|
set $skylink $2;
|
|
|
|
set $path $3;
|
|
|
|
set $args attachment=true&$args;
|
|
|
|
#set $is_args ?;
|
|
|
|
|
|
|
|
include /etc/nginx/conf.d/include/location-skylink;
|
|
|
|
}
|
|
|
|
|
|
|
|
location @purge {
|
2021-12-20 13:54:42 +00:00
|
|
|
# secure traffic by limiting to only local networks
|
|
|
|
include /etc/nginx/conf.d/include/local-network-only;
|
2021-08-27 12:15:22 +00:00
|
|
|
|
|
|
|
set $lua_purge_path "/data/nginx/cache/";
|
|
|
|
content_by_lua_file /etc/nginx/conf.d/scripts/purge-multi.lua;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /__internal/do/not/use/authenticated {
|
|
|
|
include /etc/nginx/conf.d/include/cors;
|
|
|
|
|
|
|
|
charset utf-8;
|
|
|
|
charset_types application/json;
|
|
|
|
default_type application/json;
|
|
|
|
|
|
|
|
content_by_lua_block {
|
|
|
|
local json = require('cjson')
|
|
|
|
|
|
|
|
-- this block runs only when accounts are enabled
|
|
|
|
if os.getenv("ACCOUNTS_ENABLED") ~= "true" then
|
|
|
|
ngx.say(json.encode{authenticated = false})
|
|
|
|
return ngx.exit(ngx.HTTP_OK)
|
|
|
|
end
|
|
|
|
|
|
|
|
local httpc = require("resty.http").new()
|
|
|
|
|
|
|
|
-- 10.10.10.70 points to accounts service (alias not available when using resty-http)
|
|
|
|
local res, err = httpc:request_uri("http://10.10.10.70:3000/user", {
|
2021-08-27 16:33:27 +00:00
|
|
|
headers = { ["Cookie"] = "skynet-jwt=" .. ngx.var.skynet_jwt }
|
2021-08-27 12:15:22 +00:00
|
|
|
})
|
|
|
|
|
2021-08-27 16:33:27 +00:00
|
|
|
-- endpoint /user should return HTTP_OK for authenticated and HTTP_UNAUTHORIZED for not authenticated
|
|
|
|
if res and (res.status == ngx.HTTP_OK or res.status == ngx.HTTP_UNAUTHORIZED) then
|
|
|
|
ngx.say(json.encode{authenticated = res.status == ngx.HTTP_OK})
|
|
|
|
return ngx.exit(ngx.HTTP_OK)
|
|
|
|
else
|
|
|
|
ngx.log(ngx.ERR, "Failed accounts service request /user: ", err or ("[HTTP " .. res.status .. "] " .. res.body))
|
|
|
|
ngx.say(json.encode{authenticated = false})
|
2021-08-27 12:15:22 +00:00
|
|
|
return ngx.exit(ngx.HTTP_OK)
|
|
|
|
end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
include /etc/nginx/conf.d/server-override/*;
|