mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
enabled local-network administration
This commit is contained in:
parent
4072910ac1
commit
85dbccbacb
3 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -42,6 +42,7 @@
|
|||
enableACME = true;
|
||||
locations."/".proxyPass = "http://127.0.0.1:3001";
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue