aboutsummaryrefslogtreecommitdiff
path: root/node
diff options
context:
space:
mode:
authorADRN <adrien@luxeylab.net>2021-11-28 19:20:36 +0100
committerADRN <adrien@luxeylab.net>2021-11-28 19:20:36 +0100
commit3bb938c9a0bf65390ad0f5095f27a5ab8ad57878 (patch)
tree53a1c2dcec31b07c8e1d9091e89eba1e0b1275fc /node
parent2d8999b5d525f8552b48db0c63c6fb97a6015a4e (diff)
downloadnixcfg-3bb938c9a0bf65390ad0f5095f27a5ab8ad57878.tar.gz
nixcfg-3bb938c9a0bf65390ad0f5095f27a5ab8ad57878.zip
Spoutnik is now an nginx reverse-proxy
Diffstat (limited to 'node')
-rw-r--r--node/spoutnik.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/node/spoutnik.nix b/node/spoutnik.nix
index 55df7d7..4aa6f91 100644
--- a/node/spoutnik.nix
+++ b/node/spoutnik.nix
@@ -24,5 +24,41 @@
ips = [ "10.42.0.2/16" ];
listenPort = 42136;
};
+
+ # Nginx configuration:
+
+ services.nginx = {
+ enable = true;
+
+ # Use recommended settings
+ recommendedGzipSettings = true;
+ recommendedOptimisation = true;
+ recommendedProxySettings = true;
+ recommendedTlsSettings = true;
+
+ # Add any further config to match your needs, e.g.:
+ virtualHosts = let
+ base = locations: {
+ inherit locations;
+
+ forceSSL = true;
+ enableACME = true;
+ };
+ proxy = addr: port: base {
+ "/".proxyPass = "http://" + addr + ":" + toString(port);
+ };
+ in {
+ "axl.deuxfleurs.fr" = proxy "192.168.0.60" 80;
+ "warez.luxeylab.net" = proxy "192.168.0.50" 80;
+ };
+ };
+
+
+ # ACME:
+
+ security.acme = {
+ acceptTerms = true;
+ email = "adrien@luxeylab.net";
+ };
}