diff options
-rw-r--r-- | config/web-server.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/web-server.nix b/config/web-server.nix index 4e9ae07..c8e2344 100644 --- a/config/web-server.nix +++ b/config/web-server.nix @@ -15,16 +15,19 @@ "orbekk.com" = { enableACME = true; forceSSL = true; + addSSL = true; root = "/storage/srv/orbekk.com"; }; "shape.orbekk.com" = { enableACME = true; forceSSL = true; + addSSL = true; root = "/storage/srv/orbekk.com"; }; "kj.orbekk.com" = { enableACME = true; forceSSL = true; + addSSL = true; root = "${pkgs.www-orbekk}"; locations."/" = { extraConfig = '' @@ -57,11 +60,13 @@ "git.orbekk.com" = { enableACME = true; forceSSL = true; + addSSL = true; locations."/".proxyPass = "http://10.0.20.15:11103"; }; "hydra.orbekk.com" = { enableACME = true; forceSSL = true; + addSSL = true; locations."/" = { proxyPass = "http://10.0.20.15:11101"; }; |