Please work
This commit is contained in:
parent
5315feb612
commit
d7e82621c8
16 changed files with 179 additions and 42 deletions
19
modules/proxy/default.nix
Normal file
19
modules/proxy/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
imports = [../nginx-base];
|
||||
services.nginx.virtualHosts = {
|
||||
"bubbleupnp.mothership.aciceri.dev" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://rock5b.fleet:58050";
|
||||
};
|
||||
};
|
||||
"transmission.mothership.aciceri.dev" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://rock5b.fleet:9091";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue