314 current 2025-10-11 18:09:02 25.05.20251006.20c4598 6.12.50 *

This commit is contained in:
2025-10-11 18:57:14 -05:00
parent 728176d27b
commit 0c8d7af971
2 changed files with 9 additions and 3 deletions

View File

@@ -24,8 +24,8 @@
];
# add to udr to glance
modules.services.glance.links.<category> = [{
title = service;
modules.services.glance.links.system = [{
title = bebe;
url = "https://10.10.0.1";
error-url = "https://10.10.0.1";
check-url = "https://10.10.0.1";

View File

@@ -98,9 +98,15 @@ in
services.nginx.virtualHosts."${cfg.url}" = {
forceSSL = true;
sslCertificate = sec."ssl_blakedheld_crt".path;
sslCertificateKey = sec."ssl_blakedheld_key".path;
extraConfig = ''
proxy_buffering off;
'';
locations."/" = {
proxyPass = "http://127.0.0.1:${toString cfg.port}";
extraConfig =
"proxy_set_header Upgrade $http_upgrade;" +
"proxy_set_header Connection upgrade;"
;
};
};