Streamline bao.coulomb.social login as "Sign in with KeyCape" via a versioned nginx gateway that injects overlay assets and proxies to OpenBao. Disable chart ingress in favor of the overlay ingress, wire make openbao-deploy, and add openbao-verify-login-overlay with upstream drift detection.
45 lines
1.2 KiB
Nginx Configuration File
45 lines
1.2 KiB
Nginx Configuration File
worker_processes auto;
|
|
error_log /dev/stderr notice;
|
|
pid /tmp/nginx.pid;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
access_log /dev/stdout;
|
|
sendfile on;
|
|
keepalive_timeout 65;
|
|
server_tokens off;
|
|
|
|
upstream openbao_upstream {
|
|
server openbao.openbao.svc.cluster.local:8200;
|
|
}
|
|
|
|
server {
|
|
listen 8080;
|
|
|
|
location /ui/platform-overlay/ {
|
|
alias /etc/nginx/overlay/;
|
|
add_header Cache-Control "public, max-age=300";
|
|
}
|
|
|
|
location / {
|
|
proxy_pass http://openbao_upstream;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
# Disable upstream compression so sub_filter can rewrite HTML.
|
|
proxy_set_header Accept-Encoding "";
|
|
proxy_buffering on;
|
|
|
|
sub_filter_types text/html;
|
|
sub_filter_once on;
|
|
sub_filter '</head>' '<link rel="stylesheet" href="/ui/platform-overlay/overlay.css"><script src="/ui/platform-overlay/overlay.js" defer></script></head>';
|
|
}
|
|
}
|
|
} |