Add Redmine to kernighan

This commit is contained in:
Trevor Vallender 2023-10-19 20:41:47 +01:00
parent 8e30512a3a
commit ee2bca2a0f
3 changed files with 17 additions and 0 deletions

View File

@ -18,6 +18,7 @@
../shared/services/miniflux.nix
../shared/services/nginx.nix
../shared/services/radicale.nix
../shared/services/redmine.nix
../shared/services/wallabag.nix
];

View File

@ -61,6 +61,14 @@
};
};
# Redmine
virtualHosts."redmine.tsvallender.co.uk" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://127.0.0.1:3000";
};
};
# Wallabag
virtualHosts."wb.tsvallender.co.uk" = {
forceSSL = true;

View File

@ -0,0 +1,8 @@
{ config, pkgs, inputs, ... }:
{
services.redmine = {
enable = true;
};
}