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