blob: f252e7ffe55427f2f8dc6e9e776fb90994f8e4f7 (
plain)
1
2
3
4
5
6
7
8
9
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;
};
}
|