refactor(sgx): rename internal host to openwebui

Updated ACME and nginx configurations to replace "internal.hoyer.world" with "openwebui.hoyer.world". This ensures correct routing and certificate management for the updated domain.
This commit is contained in:
Harald Hoyer 2025-01-08 15:18:34 +01:00
parent 049df580d3
commit f45a366528
2 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@
credentialsFile = config.sops.secrets.internetbs.path; credentialsFile = config.sops.secrets.internetbs.path;
}; };
certs = { certs = {
"internal.hoyer.world" = { }; "openwebui.hoyer.world" = { };
}; };
}; };
} }

View file

@ -21,9 +21,9 @@
recommendedProxySettings = true; recommendedProxySettings = true;
recommendedTlsSettings = true; recommendedTlsSettings = true;
virtualHosts = { virtualHosts = {
"internal.hoyer.world" = { "openwebui.hoyer.world" = {
enableACME = false; enableACME = false;
useACMEHost = "internal.hoyer.world"; useACMEHost = "openwebui.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}";