Compare commits
No commits in common. "44bc033828afc8fff7f51fbc1335fa8c8242bbc2" and "792eec4aa54d2a64a8501937b537b96ca496b7d2" have entirely different histories.
44bc033828
...
792eec4aa5
|
@ -167,7 +167,7 @@
|
||||||
|
|
||||||
# List services that you want to enable:
|
# List services that you want to enable:
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [ 80 443 22 25565 25566 25567];
|
networking.firewall.allowedTCPPorts = [ 80 443 22 25565 25566 25567];
|
||||||
|
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -192,6 +192,17 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Open ports in the firewall.
|
||||||
|
# networking.firewall.allowedTCPPorts = [ ... ];
|
||||||
|
# networking.firewall.allowedUDPPorts = [ ... ];
|
||||||
|
# Or disable the firewall altogether.
|
||||||
|
# networking.firewall.enable = false;
|
||||||
|
|
||||||
|
# Copy the NixOS configuration file and link it from the resulting system
|
||||||
|
# (/run/current-system/configuration.nix). This is useful in case you
|
||||||
|
# accidentally delete configuration.nix.
|
||||||
|
# system.copySystemConfiguration = true;
|
||||||
|
|
||||||
# This option defines the first version of NixOS you have installed on this particular machine,
|
# This option defines the first version of NixOS you have installed on this particular machine,
|
||||||
# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.
|
# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.
|
||||||
#
|
#
|
||||||
|
|
|
@ -26,6 +26,8 @@
|
||||||
passwordFile = "/run/keys/gitea-dbpassword";
|
passwordFile = "/run/keys/gitea-dbpassword";
|
||||||
};
|
};
|
||||||
settings.server = {
|
settings.server = {
|
||||||
|
DOMAIN = "git.skymath.duckdns.org";
|
||||||
|
ROOT_URL = "https://git.skymath.duckdns.org/";
|
||||||
HTTP_PORT = 3001;
|
HTTP_PORT = 3001;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue