diff options
Diffstat (limited to 'hosts/chaski/services/kontraiaa.nix')
-rw-r--r-- | hosts/chaski/services/kontraiaa.nix | 10 |
1 files changed, 10 insertions, 0 deletions
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; + + }; +} |