✨ [pi4] Fix nginx config with TLS
This commit is contained in:
@ -1,5 +1,4 @@
|
||||
{
|
||||
lib,
|
||||
config,
|
||||
inputs,
|
||||
common,
|
||||
@ -7,7 +6,6 @@
|
||||
...
|
||||
}:
|
||||
let
|
||||
cfg = config.mailserver;
|
||||
passwordHashKey = "mailserver/password-hash";
|
||||
in
|
||||
{
|
||||
@ -42,18 +40,5 @@ in
|
||||
587
|
||||
];
|
||||
|
||||
services.nginx.virtualHosts.${cfg.fqdn}.listen = lib.mkForce [
|
||||
{
|
||||
addr = "127.0.0.1";
|
||||
port = 8003;
|
||||
ssl = false;
|
||||
}
|
||||
{
|
||||
addr = "192.168.10.188";
|
||||
port = 8003;
|
||||
ssl = false;
|
||||
}
|
||||
];
|
||||
|
||||
sops.secrets.${passwordHashKey}.neededForUsers = true;
|
||||
}
|
||||
|
@ -12,6 +12,11 @@ let
|
||||
dbuser = dbname;
|
||||
in
|
||||
{
|
||||
security.acme = {
|
||||
acceptTerms = true;
|
||||
certs.${config.services.nextcloud.hostName}.email = "acme@${common.domain}";
|
||||
};
|
||||
|
||||
services = {
|
||||
nextcloud = {
|
||||
enable = true;
|
||||
@ -52,6 +57,11 @@ in
|
||||
};
|
||||
};
|
||||
|
||||
nginx.virtualHosts.${config.services.nextcloud.hostName} = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
};
|
||||
|
||||
postgresql = {
|
||||
enable = true;
|
||||
ensureDatabases = [ dbname ];
|
||||
|
@ -14,9 +14,11 @@ let
|
||||
forceSSL = true;
|
||||
inherit locations;
|
||||
};
|
||||
homelab = common.localIpAddr 231;
|
||||
homelab = "http://${common.localIpAddr 231}";
|
||||
homelabProxy = proxyTo homelab; # TODO get homelab local ip from systems
|
||||
redirect = subdomain: {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
globalRedirect = if subdomain == "" then domain else "${subdomain}.${domain}";
|
||||
};
|
||||
in
|
||||
@ -46,7 +48,7 @@ in
|
||||
# Uptime Kuma
|
||||
"status.${domain}" = homelabProxy 3001;
|
||||
# Headscale
|
||||
"vpm.${domain}" = proxyLocations {
|
||||
"vpn.${domain}" = proxyLocations {
|
||||
"/web".proxyPass = "${homelab}:8084";
|
||||
"/".proxyPass = "${homelab}:8082";
|
||||
};
|
||||
|
Reference in New Issue
Block a user