blob: 428b3fbb237a55efa0d05b0e3cb091c8c0b9a4bb (
plain)
1
2
3
4
5
6
7
8
9
|
{ config, lib, pkgs, ... }:
{
services.nginx.virtualHosts."stuebinm.eu" = {
enableACME = true;
forceSSL = true;
locations."/".root = (import /home/stuebinm/Dokumente/blog);
};
}
|