1
0
Fork 0

Add 5e.tools mirror

This commit is contained in:
Malte Brandy 2022-02-07 00:52:09 +01:00
parent 21f6d3aced
commit 209de86d5f

View file

@ -53,14 +53,24 @@ in
'';
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://[::1]:${toString config.port}";
proxyWebsockets = true;
extraConfig = ''
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
'';
locations = {
"/rules/" = {
root = pkgs.fetchFromGitHub {
owner = "5etools-mirror-1";
repo = "5etools-mirror-1.github.io";
sha256 = "0000000000000000000000000000000000000000000000000000";
};
index = "index.html";
};
"/" = {
proxyPass = "http://[::1]:${toString config.port}";
proxyWebsockets = true;
extraConfig = ''
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
'';
};
};
};
};