feat: skip auth paths

This commit is contained in:
2023-01-15 22:46:43 +01:00
parent 98aaa561c5
commit f32bd17013
4 changed files with 48 additions and 8 deletions

View File

@@ -7,6 +7,12 @@ services:
depends_on:
- redis
command:
{% if keycloak_clients[item].get("skips") %}
{% for route in keycloak_clients[item].skips %}
- --skip-auth-route
- {{ route }}
{% endfor %}
{% endif %}
- --http-address
- 0.0.0.0:{{ services[item].port }}
ports: