Add Redmine to kernighan
This commit is contained in:
parent
8e30512a3a
commit
ee2bca2a0f
|
@ -18,6 +18,7 @@
|
|||
../shared/services/miniflux.nix
|
||||
../shared/services/nginx.nix
|
||||
../shared/services/radicale.nix
|
||||
../shared/services/redmine.nix
|
||||
../shared/services/wallabag.nix
|
||||
];
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
{ config, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
services.redmine = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue