summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstuebinm2021-09-08 16:56:21 +0200
committerstuebinm2021-09-08 16:56:21 +0200
commit56a13176198ba25be3341d98c676977969377f77 (patch)
tree66120aa359c7340f0d2eb79fd235c566fa82912b
parentdf256e5341b3bce1390c7a70e15e7598e8a6fdde (diff)
kontraiaa infobeamer
-rw-r--r--hosts/chaski/configuration.nix1
-rw-r--r--hosts/chaski/services/kontraiaa.nix10
2 files changed, 11 insertions, 0 deletions
diff --git a/hosts/chaski/configuration.nix b/hosts/chaski/configuration.nix
index 428ac88..fb5d3b0 100644
--- a/hosts/chaski/configuration.nix
+++ b/hosts/chaski/configuration.nix
@@ -13,6 +13,7 @@
./services/exneuland.nix
./services/jitsi.nix
./services/uplcg.nix
+ ./services/kontraiaa.nix
];
hexchen.deploy = {
diff --git a/hosts/chaski/services/kontraiaa.nix b/hosts/chaski/services/kontraiaa.nix
new file mode 100644
index 0000000..f252e7f
--- /dev/null
+++ b/hosts/chaski/services/kontraiaa.nix
@@ -0,0 +1,10 @@
+{ config, lib, pkgs, ... }:
+
+{
+ services.nginx.virtualHosts."infobeamer.stuebinm.eu" = {
+ locations."/".root = pkgs.copyPathToStore "/home/stuebinm/Dokumente/Nous Sommes l'Utopie/hacc/hacc-voc/html-infobeamer";
+ enableACME = true;
+ forceSSL = true;
+
+ };
+}