m: add hound to omo, wikisearch.krebsco.de
This commit is contained in:
parent
772f84305d
commit
bb4c3d978a
@ -459,6 +459,7 @@ with import <stockholm/lib>;
|
|||||||
share.euer IN A ${nets.internet.ip4.addr}
|
share.euer IN A ${nets.internet.ip4.addr}
|
||||||
mattermost.euer IN A ${nets.internet.ip4.addr}
|
mattermost.euer IN A ${nets.internet.ip4.addr}
|
||||||
gum 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}
|
pigstarter IN A ${nets.internet.ip4.addr}
|
||||||
cgit.euer IN A ${nets.internet.ip4.addr}
|
cgit.euer IN A ${nets.internet.ip4.addr}
|
||||||
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"
|
"tracker.makefu.r"
|
||||||
|
|
||||||
"graph.r"
|
"graph.r"
|
||||||
|
"search.makefu.r"
|
||||||
"wiki.makefu.r"
|
"wiki.makefu.r"
|
||||||
"wiki.gum.r"
|
"wiki.gum.r"
|
||||||
"blog.makefu.r"
|
"blog.makefu.r"
|
||||||
|
@ -50,6 +50,7 @@ in {
|
|||||||
../2configs/deployment/owncloud.nix
|
../2configs/deployment/owncloud.nix
|
||||||
../2configs/deployment/wiki-irc-bot
|
../2configs/deployment/wiki-irc-bot
|
||||||
../2configs/deployment/boot-euer.nix
|
../2configs/deployment/boot-euer.nix
|
||||||
|
../2configs/deployment/hound
|
||||||
{
|
{
|
||||||
services.taskserver.enable = true;
|
services.taskserver.enable = true;
|
||||||
services.taskserver.fqdn = config.krebs.build.host.name;
|
services.taskserver.fqdn = config.krebs.build.host.name;
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
{ config, pkgs, ... }:
|
{ 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 = {
|
services.hound = {
|
||||||
enable = true;
|
enable = true;
|
||||||
listen = "127.0.0.1:6080";
|
listen = "127.0.0.1:6080";
|
||||||
|
Loading…
Reference in New Issue
Block a user