diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-13 11:46:05 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-13 11:46:05 -0700 |
commit | b2cce1cd70dc033c73cf3de3dcfc5f62a510af19 (patch) | |
tree | ffc68154a75bbae75a81f377c29689173381329d /hosts | |
parent | nginx: add nginx as a reverse proxy (diff) | |
download | world-b2cce1cd70dc033c73cf3de3dcfc5f62a510af19.tar.gz |
nginx: get a simple solution to work first
Diffstat (limited to '')
-rw-r--r-- | hosts/tahoe/services.nix | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/hosts/tahoe/services.nix b/hosts/tahoe/services.nix index 8846eae..8481bd0 100644 --- a/hosts/tahoe/services.nix +++ b/hosts/tahoe/services.nix @@ -19,19 +19,7 @@ in { }; rclone = { enable = true; }; traefik = { enable = false; }; - nginx = { - enable = true; - acme = { credentialsFile = secrets."acme/dns-key".path; }; - sso = { - authKeyFile = secrets."sso/auth-key".path; - users = { - fcuny = { - passwordHashFile = secrets."sso/fcuny/password-hash".path; - }; - }; - groups = { root = [ "fcuny" ]; }; - }; - }; + nginx = { enable = true; }; transmission = { enable = true; }; metrics-exporter = { enable = true; }; backup = { |