This commit is contained in:
zuckerberg 2021-05-13 06:03:13 -04:00
parent 64c9541a96
commit 22c8ee6d72

View File

@ -30,13 +30,13 @@
services.icecast = {
enable = true;
hostname = "mitty.neet.dev";
port = 8000;
listen.port = 8000;
};
services.nginx.virtualHosts."mitty.neet.dev" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://localhost:8000";
proxyPass = "http://localhost:${toString config.services.icecast.listen.port}";
};
};