refactor: update host binding and consolidate ACME domains
- Change OpenWebUI host binding from 0.0.0.0 to 127.0.0.1 for security. - Consolidate ACME certificates under internal.hoyer.world with extra domain names. - Update Nginx virtual hosts to use the unified ACME host internal.hoyer.world.
This commit is contained in:
parent
f600b46464
commit
3e1745954f
|
@ -1,8 +1,5 @@
|
||||||
{
|
{ config
|
||||||
pkgs,
|
, ...
|
||||||
lib,
|
|
||||||
config,
|
|
||||||
...
|
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
sops.secrets.internetbs = {
|
sops.secrets.internetbs = {
|
||||||
|
@ -17,8 +14,12 @@
|
||||||
credentialsFile = config.sops.secrets.internetbs.path;
|
credentialsFile = config.sops.secrets.internetbs.path;
|
||||||
};
|
};
|
||||||
certs = {
|
certs = {
|
||||||
"openwebui.hoyer.world" = { };
|
"internal.hoyer.world" = {
|
||||||
"syncthing.hoyer.world" = { };
|
extraDomainNames = [
|
||||||
|
"openwebui.hoyer.world"
|
||||||
|
"syncthing.hoyer.world"
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
{
|
{ config
|
||||||
pkgs,
|
, ...
|
||||||
lib,
|
|
||||||
config,
|
|
||||||
...
|
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
users.users.nginx.extraGroups = [ "acme" ];
|
users.users.nginx.extraGroups = [ "acme" ];
|
||||||
|
@ -23,7 +20,7 @@
|
||||||
virtualHosts = {
|
virtualHosts = {
|
||||||
"openwebui.hoyer.world" = {
|
"openwebui.hoyer.world" = {
|
||||||
enableACME = false;
|
enableACME = false;
|
||||||
useACMEHost = "openwebui.hoyer.world";
|
useACMEHost = "internal.hoyer.world";
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
proxyPass = "http://127.0.0.1:${toString config.services.open-webui.port}";
|
proxyPass = "http://127.0.0.1:${toString config.services.open-webui.port}";
|
||||||
|
@ -32,7 +29,7 @@
|
||||||
};
|
};
|
||||||
"syncthing.hoyer.world" = {
|
"syncthing.hoyer.world" = {
|
||||||
enableACME = false;
|
enableACME = false;
|
||||||
useACMEHost = "syncthing.hoyer.world";
|
useACMEHost = "internal.hoyer.world";
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
proxyPass = "http://127.0.0.1:8384";
|
proxyPass = "http://127.0.0.1:8384";
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
services.open-webui = {
|
services.open-webui = {
|
||||||
enable = true;
|
enable = true;
|
||||||
port = 8080;
|
port = 8080;
|
||||||
host = "0.0.0.0";
|
host = "127.0.0.1";
|
||||||
environment = {
|
environment = {
|
||||||
ANONYMIZED_TELEMETRY = "False";
|
ANONYMIZED_TELEMETRY = "False";
|
||||||
DO_NOT_TRACK = "True";
|
DO_NOT_TRACK = "True";
|
||||||
|
|
Loading…
Reference in a new issue