2021-11-14 13:17:32 +01:00
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
let
|
|
|
|
|
proxy = url: {
|
|
|
|
|
forceSSL = true;
|
|
|
|
|
enableACME = true;
|
|
|
|
|
locations."/" = {
|
|
|
|
|
proxyPass = url;
|
|
|
|
|
proxyWebsockets = true;
|
|
|
|
|
};
|
|
|
|
|
};
|
2021-11-14 16:33:00 +01:00
|
|
|
|
k8s_proxy = proxy "http://10.42.20.5:80/";
|
2021-11-14 13:17:32 +01:00
|
|
|
|
in {
|
|
|
|
|
imports = [
|
|
|
|
|
# Import common config
|
|
|
|
|
../../common/generic-lxc.nix
|
|
|
|
|
../../common
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
networking.hostName = "nginx";
|
|
|
|
|
|
|
|
|
|
# This value determines the NixOS release from which the default
|
|
|
|
|
# settings for stateful data, like file locations and database versions
|
|
|
|
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
|
|
|
|
# this value at the release version of the first install of this system.
|
|
|
|
|
# Before changing this value read the documentation for this option
|
|
|
|
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
|
|
|
|
system.stateVersion = "21.11"; # Did you read the comment?
|
|
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [ ];
|
|
|
|
|
|
|
|
|
|
networking.firewall.enable = true;
|
|
|
|
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
|
|
|
|
|
|
|
|
|
services.nginx = {
|
|
|
|
|
enable = true;
|
|
|
|
|
recommendedGzipSettings = true;
|
|
|
|
|
recommendedOptimisation = true;
|
|
|
|
|
recommendedProxySettings = true;
|
|
|
|
|
recommendedTlsSettings = true;
|
|
|
|
|
|
|
|
|
|
virtualHosts."voidcorp.nl" = k8s_proxy;
|
|
|
|
|
virtualHosts."harbor.voidcorp.nl" = k8s_proxy;
|
|
|
|
|
virtualHosts."cdn.voidcorp.nl" = proxy "http://10.42.2.6:80/";
|
|
|
|
|
|
|
|
|
|
virtualHosts."git.voidcorp.nl" = proxy "http://gitea.voidlocal:3000/";
|
|
|
|
|
|
2021-11-14 16:33:00 +01:00
|
|
|
|
virtualHosts."galerievanslagmaat.nl" = k8s_proxy;
|
|
|
|
|
virtualHosts."staging.galerievanslagmaat.nl" = k8s_proxy;
|
|
|
|
|
virtualHosts."groenehartansichtkaarten.nl" = k8s_proxy;
|
|
|
|
|
virtualHosts."drone.voidcorp.nl" = k8s_proxy;
|
2021-11-14 13:17:32 +01:00
|
|
|
|
|
|
|
|
|
virtualHosts."vaultwarden.voidcorp.nl" = proxy "http://10.42.20.4:8000/";
|
|
|
|
|
|
|
|
|
|
virtualHosts."s3.voidcorp.nl" = proxy "http://10.42.20.6:9000/";
|
|
|
|
|
virtualHosts."explore.s3.voidcorp.nl" = proxy "http://10.42.20.6:9001/";
|
|
|
|
|
virtualHosts."registry.voidcorp.nl" = proxy "http://10.42.20.7:5000/";
|
2021-11-14 22:46:14 +01:00
|
|
|
|
virtualHosts."grafana.voidcorp.nl" = proxy "http://10.42.20.9:3000/";
|
2021-11-15 17:37:48 +01:00
|
|
|
|
virtualHosts."gitlab.voidcorp.nl" = proxy "http://10.42.2.2:80/";
|
2021-11-14 13:17:32 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
security.acme.email = "acme@voidcorp.nl";
|
|
|
|
|
security.acme.acceptTerms = true;
|
|
|
|
|
}
|