Move STB Wordpress to an unused port

This commit is contained in:
Paul-Henri Froidmont 2022-02-15 21:47:14 +01:00
parent b518805bfd
commit 7e51ba37b1
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE

View file

@ -50,7 +50,7 @@ in
"/nix/var/data/stb-wordpress:/var/www/html" "/nix/var/data/stb-wordpress:/var/www/html"
"${uploadWordpressConfig}:/usr/local/etc/php/conf.d/uploads.ini" "${uploadWordpressConfig}:/usr/local/etc/php/conf.d/uploads.ini"
]; ];
ports = [ "8080:80" ]; ports = [ "127.0.0.1:8180:80" ];
extraOptions = [ "--network=stb-br" ]; extraOptions = [ "--network=stb-br" ];
autoStart = true; autoStart = true;
}; };
@ -62,7 +62,7 @@ in
enableACME = true; enableACME = true;
locations."/" = { locations."/" = {
proxyPass = "http://127.0.0.1:8080"; proxyPass = "http://127.0.0.1:8180";
}; };
}; };
} }