Add Redirect on id.hamburg.ccc.de to the account management page

This commit is contained in:
christian 2023-10-23 21:16:32 +02:00
parent 505a2ba9f9
commit 26181f7759
No known key found for this signature in database
GPG key ID: 0B029610FD14AFAF
2 changed files with 9 additions and 0 deletions

View file

@ -46,6 +46,11 @@ server {
# Also provide "_hidden" for by, since it's not relevant.
proxy_set_header Forwarded "for=$remote_addr;proto=https;host=$host;by=_hidden";
# Redirect a user opening any not set location on id.hamburg.ccc.de to the account management page.
location ^~ / {
return 307 https://id.hamburg.ccc.de/realms/ccchh/account/;
}
location /js/ {
proxy_pass http://127.0.0.1:8080/js/;
}

View file

@ -44,6 +44,10 @@ server {
allow 185.161.129.132/32;
deny all;
location ^~ / {
return 307 https://keycloak-admin.hamburg.ccc.de/admin/master/console/;
}
location /js/ {
proxy_pass http://127.0.0.1:8080/js/;
}