aboutsummaryrefslogtreecommitdiff
path: root/modules/private/websites/chloe/production.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/private/websites/chloe/production.nix')
-rw-r--r--modules/private/websites/chloe/production.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/private/websites/chloe/production.nix b/modules/private/websites/chloe/production.nix
index 6e0c34d..6cfdb7f 100644
--- a/modules/private/websites/chloe/production.nix
+++ b/modules/private/websites/chloe/production.nix
@@ -26,15 +26,15 @@ in {
26 }; 26 };
27 system.activationScripts.chloe_prod = chloe.activationScript; 27 system.activationScripts.chloe_prod = chloe.activationScript;
28 myServices.websites.webappDirs."${chloe.apache.webappName}" = chloe.app.webRoot; 28 myServices.websites.webappDirs."${chloe.apache.webappName}" = chloe.app.webRoot;
29 services.websites.production.modules = chloe.apache.modules; 29 services.websites.env.production.modules = chloe.apache.modules;
30 services.websites.production.vhostConfs.chloe = { 30 services.websites.env.production.vhostConfs.chloe = {
31 certName = "chloe"; 31 certName = "chloe";
32 certMainHost = "osteopathe-cc.fr"; 32 certMainHost = "osteopathe-cc.fr";
33 hosts = ["osteopathe-cc.fr" "www.osteopathe-cc.fr" ]; 33 hosts = ["osteopathe-cc.fr" "www.osteopathe-cc.fr" ];
34 root = chloe.apache.root; 34 root = chloe.apache.root;
35 extraConfig = [ chloe.apache.vhostConf ]; 35 extraConfig = [ chloe.apache.vhostConf ];
36 }; 36 };
37 services.websites.production.watchPaths = [ 37 services.websites.env.production.watchPaths = [
38 "/var/secrets/webapps/${chloe.app.environment}-chloe" 38 "/var/secrets/webapps/${chloe.app.environment}-chloe"
39 ]; 39 ];
40 }; 40 };