stella web
This commit is contained in:
parent
5720f8cb6d
commit
d8d47efda9
1 changed files with 17 additions and 0 deletions
|
@ -20,6 +20,23 @@
|
|||
enableACME = true;
|
||||
root = "/home/azriel/wolfgirl.systems/book";
|
||||
};
|
||||
services.nginx.virtualHosts."lastfm.aubrey.pet" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
root = "/home/azriel/wolfgirl.systems/book";
|
||||
locations."/" = {
|
||||
proxyPass = "http://127.0.0.1:5000";
|
||||
extraConfig = ''
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
'';
|
||||
};
|
||||
};
|
||||
services.nginx.virtualHosts."bun-e.fyi" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
|
|
Loading…
Reference in a new issue