diff options
author | stuebinm | 2021-09-08 16:56:21 +0200 |
---|---|---|
committer | stuebinm | 2021-09-08 16:56:21 +0200 |
commit | 56a13176198ba25be3341d98c676977969377f77 (patch) | |
tree | 66120aa359c7340f0d2eb79fd235c566fa82912b /hosts/chaski | |
parent | df256e5341b3bce1390c7a70e15e7598e8a6fdde (diff) |
kontraiaa infobeamer
Diffstat (limited to '')
-rw-r--r-- | hosts/chaski/configuration.nix | 1 | ||||
-rw-r--r-- | hosts/chaski/services/kontraiaa.nix | 10 |
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; + + }; +} |