m: add hound to omo, wikisearch.krebsco.de

This commit is contained in:
makefu 2017-06-01 10:12:43 +02:00
parent a70768984a
commit 660b18f4ca
2 changed files with 6 additions and 1 deletions

View file

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

View file

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