enabled local-network administration

This commit is contained in:
Nickiel12 2023-05-06 10:28:31 -07:00
parent 4072910ac1
commit 85dbccbacb
3 changed files with 4 additions and 3 deletions

View file

@ -33,7 +33,7 @@
};
firewall = {
enable = true;
allowedTCPPorts = [80 443];
allowedTCPPorts = [80 443 3001]; # port 3001 opened to allow git traffic on the local netword
};
};

View file

@ -10,9 +10,9 @@
#ui.DEFAULT_THEME = "arc-green";
# Enable this after the first user has been created
#service.DISABLE_REGISTRATION = true;
service.DISABLE_REGISTRATION = true;
session.COOKIE_SECURE = true;
#session.COOKIE_SECURE = true;
# external facing ui
server = {
ROOT_URL = "https://git.nickiel.net";

View file

@ -42,6 +42,7 @@
enableACME = true;
locations."/".proxyPass = "http://127.0.0.1:3001";
};
};
};
}