Add Drupal

This commit is contained in:
Wekuz 2026-03-11 18:01:18 +02:00
parent 767dac0b77
commit 6a967394b3
Signed by: Wekuz
GPG key ID: 2E502F2AABD32DF9

View file

@ -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";