mirror of https://gitlab.crans.org/nounous/nixos
17 lines
357 B
Nix
17 lines
357 B
Nix
{ ... }:
|
|
|
|
{
|
|
services.anubis = {
|
|
instances."muraille" = {
|
|
enable = true;
|
|
settings = {
|
|
BIND_NETWORK = "tcp";
|
|
BIND = "127.0.0.1:7777";
|
|
TARGET = "http://localhost:8888";
|
|
COOKIE_DOMAIN = "crans.org";
|
|
REDIRECT_DOMAINS = "install-party.crans.org,mediawiki.crans.org,wiki.crans.org";
|
|
};
|
|
};
|
|
};
|
|
}
|