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

This commit is contained in:
makefu 2017-06-01 10:12:43 +02:00
parent 772f84305d
commit bb4c3d978a
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
3 changed files with 8 additions and 1 deletions

View File

@ -459,6 +459,7 @@ with import <stockholm/lib>;
share.euer IN A ${nets.internet.ip4.addr}
mattermost.euer IN A ${nets.internet.ip4.addr}
gum IN A ${nets.internet.ip4.addr}
wikisearch IN A ${nets.internet.ip4.addr}
pigstarter IN A ${nets.internet.ip4.addr}
cgit.euer IN A ${nets.internet.ip4.addr}
euer IN A ${nets.internet.ip4.addr}
@ -490,6 +491,7 @@ with import <stockholm/lib>;
"tracker.makefu.r"
"graph.r"
"search.makefu.r"
"wiki.makefu.r"
"wiki.gum.r"
"blog.makefu.r"

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