parent
a4f3ff5b9d
commit
eee1f76df3
|
@ -22,7 +22,15 @@ services.nginx = {
|
|||
forceSSL = true;
|
||||
## LetsEncrypt
|
||||
enableACME = true;
|
||||
};
|
||||
};
|
||||
"music.atlanticaweb.fr" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://127.0.0.1:${toString config.services.navidrome.settings.Port}/";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -12,11 +12,6 @@ in
|
|||
root * ${caddyDir}
|
||||
}
|
||||
|
||||
https://music.atlanticaweb.fr {
|
||||
encode gzip
|
||||
reverse_proxy http://192.168.10.114:4533
|
||||
}
|
||||
|
||||
https://git.atlanticaweb.fr {
|
||||
encode gzip
|
||||
reverse_proxy http://localhost:3001
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
services.navidrome = {
|
||||
enable = true; # Enable Gitea
|
||||
enable = true;
|
||||
settings = {
|
||||
MusicFolder = "/var/lib/nextcloud/data/alexandre/files/Musique/";
|
||||
Address = "0.0.0.0";
|
||||
Port = "4533";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue