mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-18 08:06:16 +01:00
Install keycloak-metrics-spi and configure it to provide prometheus endpoints available as auth/realms/$realm/metrics. The prometheus metrics are behind basic_auth as some metrics might be sensitive or can be used by attackers. #23
58 lines
2.0 KiB
Django/Jinja
58 lines
2.0 KiB
Django/Jinja
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name {{ keycloak_domain }};
|
|
|
|
access_log /var/log/nginx/{{ keycloak_domain }}/access.log reduced;
|
|
error_log /var/log/nginx/{{ keycloak_domain }}/error.log;
|
|
|
|
include snippets/letsencrypt.conf;
|
|
|
|
location / {
|
|
access_log off;
|
|
return 301 https://$server_name$request_uri;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
server_name {{ keycloak_domain }};
|
|
|
|
access_log /var/log/nginx/{{ keycloak_domain }}/access.log reduced;
|
|
error_log /var/log/nginx/{{ keycloak_domain }}/error.log;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/{{ keycloak_domain }}/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/{{ keycloak_domain }}/privkey.pem;
|
|
ssl_trusted_certificate /etc/letsencrypt/live/{{ keycloak_domain }}/chain.pem;
|
|
|
|
root {{ keycloak_domain }};
|
|
|
|
location ~ /auth/realms/[a-z]+/metrics {
|
|
auth_basic "Prometheus exporter";
|
|
auth_basic_user_file {{ keycloak_nginx_htpasswd }};
|
|
|
|
access_log /var/log/nginx/{{ keycloak_domain }}/access.log main;
|
|
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;
|
|
proxy_ssl_verify off;
|
|
proxy_pass https://localhost:{{ keycloak_port }};
|
|
}
|
|
|
|
location / {
|
|
access_log /var/log/nginx/{{ keycloak_domain }}/access.log main;
|
|
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;
|
|
proxy_ssl_verify off;
|
|
proxy_pass https://localhost:{{ keycloak_port }};
|
|
}
|
|
|
|
location = / {
|
|
return 301 https://$server_name/auth/realms/archlinux/account;
|
|
}
|
|
}
|