nix-conf/systems/hetzner/nginx.nix

48 lines
1.3 KiB
Nix
Raw Normal View History

2024-05-01 19:33:12 +02:00
{config, pkgs, ...}:
{
services.nginx = {
enable = true;
recommendedTlsSettings = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedProxySettings = true;
virtualHosts = {
"missing.ninja" = {
serverAliases = [ "joens.zone" "joens.website" "joens.site" "joens.online" "joens.link" "joens.international" "joens.family" "joens.digital" "joens.blog" "net0loggy.net" "clan-war.net" "net0loggy.de" "dtg-c.de" ];
enableACME = true;
forceSSL = true;
};
"webmail.missing.ninja" = {
serverAliases = [ "joens.email" ];
};
"pad.missing.ninja" = {
forceSSL = true;
enableACME = true;
locations."/".proxyPass = "http://localhost:3333";
locations."/socket.io/" = {
proxyPass = "http://localhost:3333";
proxyWebsockets = true;
extraConfig =
"proxy_ssl_server_name on;"
;
};
};
};
};
2024-05-01 19:34:08 +02:00
services.hedgedoc = {
2024-05-01 19:33:12 +02:00
enable = true;
settings = {
db = {
dialect = "sqlite";
torage = "/var/lib/hedgedoc/db.hedgedoc.sqlite";
};
domain = "pad.missing.ninja";
port = 3333;
useSSL = false;
protocolUseSSL = true;
};
};
}