This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2021-08-27 12:15:22 +00:00
|
|
|
include /etc/nginx/conf.d/include/cors;
|
2022-03-14 13:24:35 +00:00
|
|
|
include /etc/nginx/conf.d/include/proxy-cache-downloads;
|
|
|
|
|
|
|
|
# ensure that skylink that we pass around is base64 encoded (transform base32 encoded ones)
|
|
|
|
# this is important because we want only one format in cache keys and logs
|
|
|
|
set_by_lua_block $skylink { return require("skynet.skylink").parse(ngx.var.skylink) }
|
2021-11-05 11:57:06 +00:00
|
|
|
|
2021-08-27 12:15:22 +00:00
|
|
|
proxy_set_header User-Agent: Sia-Agent;
|
2022-03-14 11:25:49 +00:00
|
|
|
proxy_pass http://sia:9980/skynet/skylink/$skylink$path$is_args$args;
|