forked from DGNum/lab-infra
fix(photo01): fix immich port
This commit is contained in:
parent
dc2842a807
commit
b391255aa9
2 changed files with 3 additions and 3 deletions
|
@ -34,7 +34,6 @@ in
|
||||||
];
|
];
|
||||||
|
|
||||||
security.acme.acceptTerms = true;
|
security.acme.acceptTerms = true;
|
||||||
security.acme.defaults.email = "webmaster@nixos.org";
|
|
||||||
|
|
||||||
systemd.network = {
|
systemd.network = {
|
||||||
config.routeTables = {
|
config.routeTables = {
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
{
|
{
|
||||||
services.immich = {
|
services.immich = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# default port: 3001
|
# NOTE: default port changes in a later version
|
||||||
|
port = 3001;
|
||||||
machine-learning.enable = true;
|
machine-learning.enable = true;
|
||||||
host = "localhost";
|
host = "localhost";
|
||||||
};
|
};
|
||||||
|
@ -10,6 +11,6 @@
|
||||||
enableACME = true;
|
enableACME = true;
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
serverAliases = [ ];
|
serverAliases = [ ];
|
||||||
locations."/".proxyPass = "http://localhost:2283/";
|
locations."/".proxyPass = "http://localhost:3001/";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue