From 6a967394b3884cb26845dbe8cc541397a4611ab5 Mon Sep 17 00:00:00 2001 From: Wekuz Date: Wed, 11 Mar 2026 18:01:18 +0200 Subject: [PATCH] Add Drupal --- hosts/plexy/default.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/hosts/plexy/default.nix b/hosts/plexy/default.nix index 1c50fec..9d6b8fc 100644 --- a/hosts/plexy/default.nix +++ b/hosts/plexy/default.nix @@ -66,6 +66,8 @@ 443 5201 # iperf3 15835 # Glance + 14789 # LibreBooking + 14788 # Drupal ]; }; @@ -109,6 +111,23 @@ enable = true; settings = import ./glance.nix; }; + drupal = { + enable = true; + sites = { + "localhost" = { + enable = true; + extraConfig = '' + $base_url="http://192.168.1.210:14788"; + ''; + }; + }; + }; + nginx.virtualHosts."localhost".listen = [ + { + addr = "0.0.0.0"; + port = 14788; + } + ]; }; environment.variables.EDITOR = "nvim";