blob: 9dbac41adc2eb62093752d431794648b45c23f98 [file] [log] [blame]
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name id.miau.local;
location /auth/ { # Gerrit adds this prefix for Keycloak...
rewrite ^/auth(.*)$ $1 last;
}
location / {
proxy_pass http://keycloak:8080;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host;
}
}