summaryrefslogtreecommitdiff
path: root/nix/modules/nginx.nix
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2025-03-21 04:52:46 -0700
committerPreston Pan <ret2pop@gmail.com>2025-03-21 04:52:46 -0700
commit00c9e35779cbb298d6395a6e2c2534007a92976f (patch)
treee5bfc2d375b331ba6b664ddf6152f51bfcc900df /nix/modules/nginx.nix
parent2a4c959ef00fea785633afe44be0af77d6441a4b (diff)
add a ton of VPS upgrades; update website; live life
Diffstat (limited to 'nix/modules/nginx.nix')
-rw-r--r--nix/modules/nginx.nix18
1 files changed, 14 insertions, 4 deletions
diff --git a/nix/modules/nginx.nix b/nix/modules/nginx.nix
index e603759..bb87fce 100644
--- a/nix/modules/nginx.nix
+++ b/nix/modules/nginx.nix
@@ -8,10 +8,6 @@
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
-
- # Only allow PFS-enabled ciphers with AES256
- # sslCiphers = "AES256+EECDH:AES256+EDH:!aNULL";
-
appendHttpConfig = '''';
gitweb = {
@@ -64,6 +60,20 @@
addSSL = true;
enableACME = true;
};
+
+ "nullring.xyz" = {
+ serverName = "nullring.xyz";
+ root = "/var/www/nullring/";
+ addSSL = true;
+ enableACME = true;
+ };
+
+ "mail.${config.monorepo.vars.remoteHost}" = {
+ serverName = "mail.${config.monorepo.vars.remoteHost}";
+ root = "/var/www/dummy";
+ addSSL = true;
+ enableACME = true;
+ };
};
};
}