m: add hound to omo, wikisearch.krebsco.de
This commit is contained in:
parent
a70768984a
commit
660b18f4ca
|
@ -50,6 +50,7 @@ in {
|
|||
../2configs/deployment/owncloud.nix
|
||||
../2configs/deployment/wiki-irc-bot
|
||||
../2configs/deployment/boot-euer.nix
|
||||
../2configs/deployment/hound
|
||||
{
|
||||
services.taskserver.enable = true;
|
||||
services.taskserver.fqdn = config.krebs.build.host.name;
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
services.nginx.virtualHosts."wikisearch.krebsco.de".locations."/".proxyPass = "http://localhost:6080";
|
||||
services.nginx.virtualHosts."wikisearch.krebsco.de" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/".proxyPass = "http://localhost:6080";
|
||||
};
|
||||
services.hound = {
|
||||
enable = true;
|
||||
listen = "127.0.0.1:6080";
|
||||
|
|
Loading…
Reference in a new issue