diff options
author | Franck Cuny <franck@fcuny.net> | 2024-08-05 17:35:58 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-08-05 17:35:58 -0700 |
commit | 92e0d7a216272504aded8c738d07e46246df2217 (patch) | |
tree | 5adc9001575c425e9ca280570537cea629682076 /nix/hosts/wildcat | |
parent | another attempt for nginx and acme (diff) | |
download | world-92e0d7a216272504aded8c738d07e46246df2217.tar.gz |
fix nginx configuration for fcuny.net
Diffstat (limited to 'nix/hosts/wildcat')
-rw-r--r-- | nix/hosts/wildcat/configuration.nix | 4 |
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"; }; }; }; |