mirror of
https://github.com/byo-software/steam-openid-connect-provider.git
synced 2025-01-26 09:16:28 +00:00
59bd22567e
Updating keycloak container to be able to add SSL cert
21 lines
No EOL
470 B
Text
21 lines
No EOL
470 B
Text
server {
|
|
listen 443 ssl;
|
|
ssl_certificate /tmp/dev.local.crt;
|
|
ssl_certificate_key /tmp/dev.local.key;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_protocol_addr;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_set_header Host $host;
|
|
|
|
location / {
|
|
return 301 https://$host/auth/realms/dev/account;
|
|
}
|
|
|
|
location /auth {
|
|
proxy_pass http://keycloak:8080;
|
|
}
|
|
|
|
location /steam {
|
|
proxy_pass http://steamidp:80;
|
|
}
|
|
} |