docker-compose environment for the entire v.st system
https://v.st/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
361 B
16 lines
361 B
server {
|
|
server_name ${KEYCLOAK_HOSTNAME} ${KEYCLOAK_HOSTNAME}.${DOMAIN_NAME};
|
|
client_max_body_size 128m;
|
|
|
|
location / {
|
|
proxy_pass http://keycloak:8080;
|
|
proxy_pass_header Set-Cookie;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
proxy_set_header X-Forwarded-Proto https;
|
|
}
|
|
|
|
include /etc/nginx/includes/ssl.conf;
|
|
}
|
|
|
|
|
|
|