aboutsummaryrefslogtreecommitdiff
path: root/modules/private/websites/aten
diff options
context:
space:
mode:
Diffstat (limited to 'modules/private/websites/aten')
-rw-r--r--modules/private/websites/aten/integration.nix3
-rw-r--r--modules/private/websites/aten/production.nix4
2 files changed, 6 insertions, 1 deletions
diff --git a/modules/private/websites/aten/integration.nix b/modules/private/websites/aten/integration.nix
index 748e388..384b324 100644
--- a/modules/private/websites/aten/integration.nix
+++ b/modules/private/websites/aten/integration.nix
@@ -27,6 +27,9 @@ in {
27 root = aten.apache.root; 27 root = aten.apache.root;
28 extraConfig = [ aten.apache.vhostConf ]; 28 extraConfig = [ aten.apache.vhostConf ];
29 }; 29 };
30 services.websites.integration.watchPaths = [
31 "/var/secrets/webapps/${aten.app.environment}-aten"
32 ];
30 }; 33 };
31} 34}
32 35
diff --git a/modules/private/websites/aten/production.nix b/modules/private/websites/aten/production.nix
index 7a4adb5..1a55e8a 100644
--- a/modules/private/websites/aten/production.nix
+++ b/modules/private/websites/aten/production.nix
@@ -29,6 +29,8 @@ in {
29 root = aten.apache.root; 29 root = aten.apache.root;
30 extraConfig = [ aten.apache.vhostConf ]; 30 extraConfig = [ aten.apache.vhostConf ];
31 }; 31 };
32 services.websites.production.watchPaths = [
33 "/var/secrets/webapps/${aten.app.environment}-aten"
34 ];
32 }; 35 };
33} 36}
34