Hasenloch (Engelsystem for divoc)
Seems to work fine, except for the domain — the engelsystem tries to load its ressources from the IP of the container instead of its url set in the config.
This commit is contained in:
parent
1a8842457d
commit
3b42b89bd7
2 changed files with 82 additions and 0 deletions
|
@ -16,6 +16,7 @@
|
||||||
./services/docker.nix
|
./services/docker.nix
|
||||||
./services/gitlab-runner.nix
|
./services/gitlab-runner.nix
|
||||||
./services/lantifa.nix
|
./services/lantifa.nix
|
||||||
|
./services/hasenloch.nix
|
||||||
./services/syncthing.nix
|
./services/syncthing.nix
|
||||||
./services/monitoring.nix
|
./services/monitoring.nix
|
||||||
];
|
];
|
||||||
|
|
81
hosts/hainich/services/hasenloch.nix
Normal file
81
hosts/hainich/services/hasenloch.nix
Normal file
|
@ -0,0 +1,81 @@
|
||||||
|
{ pkgs, config, ...}:
|
||||||
|
|
||||||
|
{
|
||||||
|
containers.hasenloch = {
|
||||||
|
autoStart = true;
|
||||||
|
privateNetwork = true;
|
||||||
|
hostAddress = "192.168.100.5";
|
||||||
|
localAddress = "192.168.100.7";
|
||||||
|
|
||||||
|
config = { pkgs, config2, ...}: {
|
||||||
|
services.engelsystem = {
|
||||||
|
enable = true;
|
||||||
|
domain = "himmel.hacc.earth";
|
||||||
|
|
||||||
|
config = {
|
||||||
|
url = "https://himmel.hacc.earth";
|
||||||
|
trusted_proxies = [ "${config.containers.hasenloch.hostAddress}/31" ];
|
||||||
|
rewrite_urls = true;
|
||||||
|
|
||||||
|
app_name = "Hasenloch";
|
||||||
|
|
||||||
|
footer_items = {
|
||||||
|
FAQ = "TODO";
|
||||||
|
Contact = "TODO";
|
||||||
|
};
|
||||||
|
|
||||||
|
signup_requires_arrival = true;
|
||||||
|
enable_dect = false;
|
||||||
|
|
||||||
|
theme = 10;
|
||||||
|
|
||||||
|
database = {
|
||||||
|
database = "engelsystem";
|
||||||
|
host = "localhost";
|
||||||
|
username = "engelsystem";
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
email = {
|
||||||
|
driver = "smtp";
|
||||||
|
encryption = "tls";
|
||||||
|
from = {
|
||||||
|
address = "noreply@infra4future.de";
|
||||||
|
name = "divoc Hasenloch";
|
||||||
|
};
|
||||||
|
host = "mail.hacc.space";
|
||||||
|
password = {
|
||||||
|
_secret = "/var/keys/engelsystem/mail";
|
||||||
|
};
|
||||||
|
port = 587;
|
||||||
|
username = "noreply@infra4future.de";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
||||||
|
networking.firewall.enable = false;
|
||||||
|
services.coredns = {
|
||||||
|
enable = true;
|
||||||
|
config = ''
|
||||||
|
.:53 {
|
||||||
|
forward . 1.1.1.1
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.nginx.recommendedProxySettings = true;
|
||||||
|
services.nginx.virtualHosts."himmel.hacc.earth" = {
|
||||||
|
locations."/".proxyPass = "http://" + config.containers.hasenloch.localAddress;
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
networking.nat.enable = true;
|
||||||
|
networking.nat.internalInterfaces = ["ve-hasenloch"];
|
||||||
|
networking.nat.externalInterface = "enp6s0";
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue