about summary refs log tree commit diff
path: root/nix/hosts/wildcat/configuration.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-08-05 17:35:58 -0700
committerFranck Cuny <franck@fcuny.net>2024-08-05 17:35:58 -0700
commit92e0d7a216272504aded8c738d07e46246df2217 (patch)
tree5adc9001575c425e9ca280570537cea629682076 /nix/hosts/wildcat/configuration.nix
parentanother attempt for nginx and acme (diff)
downloadworld-92e0d7a216272504aded8c738d07e46246df2217.tar.gz
fix nginx configuration for fcuny.net
Diffstat (limited to '')
-rw-r--r--nix/hosts/wildcat/configuration.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/hosts/wildcat/configuration.nix b/nix/hosts/wildcat/configuration.nix
index 23ac05f..e3d5a9b 100644
--- a/nix/hosts/wildcat/configuration.nix
+++ b/nix/hosts/wildcat/configuration.nix
@@ -22,14 +22,14 @@
 
     virtualHosts = {
       "fcuny.net" = {
-        addSSL = true;
+        forceSSL = true;
         enableACME = true;
         locations = {
           "/" = {
             root = "/srv/www/fcuny.net";
           };
           "/.well-known/acme-challenge" = {
-            root = "/var/lib/acme/.challenges";
+            root = "/var/lib/acme/acme-challenges";
           };
         };
       };