Compare commits

..

No commits in common. "6c37553143eaf2833c52e261bd21429dc1c72c2f" and "9d756a2046e3d789acba3e783964759c7f4bad53" have entirely different histories.

4 changed files with 2 additions and 10 deletions

View file

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

View file

@ -12,11 +12,6 @@
settings = { settings = {
"ui" = {
DEFAULT_THEME = "palenight";
THEMES = "auto,palenight,gitea,arc-green";
};
#ui.DEFAULT_THEME = "arc-green"; #ui.DEFAULT_THEME = "arc-green";
# Enable this after the first user has been created # Enable this after the first user has been created
service.DISABLE_REGISTRATION = true; service.DISABLE_REGISTRATION = true;

View file

@ -40,7 +40,6 @@
services.postgresql = { services.postgresql = {
enable = true; enable = true;
enableTCPIP = true;
ensureDatabases = [ "nextcloud" ]; ensureDatabases = [ "nextcloud" ];
ensureUsers = [ ensureUsers = [
{ {
@ -53,8 +52,7 @@
local all all trust local all all trust
host all all 127.0.0.1/32 trust host all all 127.0.0.1/32 trust
host all all ::1/128 trust host all all ::1/128 trust
host all all 0.0.0.0/0 md5 '';
''; # address is the computer you are connecting from
}; };
# Make sure PostSQL is running before nextcloud # Make sure PostSQL is running before nextcloud

File diff suppressed because one or more lines are too long