diff options
Diffstat (limited to '')
-rw-r--r-- | hosts/flora/services/blog.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/hosts/flora/services/blog.nix b/hosts/flora/services/blog.nix new file mode 100644 index 0000000..428b3fb --- /dev/null +++ b/hosts/flora/services/blog.nix @@ -0,0 +1,9 @@ +{ config, lib, pkgs, ... }: + +{ + services.nginx.virtualHosts."stuebinm.eu" = { + enableACME = true; + forceSSL = true; + locations."/".root = (import /home/stuebinm/Dokumente/blog); + }; +} |