32 lines
737 B
Nix
32 lines
737 B
Nix
|
{ config, pkgs, ...}:
|
||
|
|
||
|
{
|
||
|
|
||
|
networking.interfaces = {
|
||
|
ens20 = {
|
||
|
ipv4.addresses = [{
|
||
|
address = "10.42.123.55";
|
||
|
prefixLength = 24;
|
||
|
}];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
|
||
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
||
|
services.nginx = {
|
||
|
enable = true;
|
||
|
clientMaxBodySize = "400M";
|
||
|
recommendedGzipSettings = true;
|
||
|
recommendedOptimisation = true;
|
||
|
recommendedProxySettings = true;
|
||
|
recommendedTlsSettings = true;
|
||
|
};
|
||
|
services.nginx.virtualHosts."lightbuffet.entr0py.cloud" = { # Gitea hostname
|
||
|
enableACME = true; # Use ACME certs
|
||
|
forceSSL = true; # Force SSL
|
||
|
locations."/" = {
|
||
|
proxyPass = "https://10.42.123.20:8006";
|
||
|
proxyWebsockets = true;
|
||
|
};
|
||
|
};
|
||
|
}
|