2021-01-07 20:34:41 +01:00
|
|
|
warnings.unsupportedBrowser=false
|
|
|
|
{% for setting in inception_project_settings %}
|
|
|
|
{{ setting }}
|
|
|
|
{% endfor %}
|
2021-11-04 12:23:34 +01:00
|
|
|
{% if inception_project_server_auth_mode == "preauth" %}
|
|
|
|
auth.preauth.header.principal={{ inception_project_server_preauth_header }}
|
2021-11-04 14:57:58 +01:00
|
|
|
{% if inception_project_server_set_preauth_logout_url %}
|
2021-11-04 12:23:34 +01:00
|
|
|
auth.preauth.logoutUrl={{ inception_project_server_preauth_logout_url }}
|
2021-11-04 14:57:58 +01:00
|
|
|
{% endif %}
|
2021-11-04 12:23:34 +01:00
|
|
|
auth.preauth.newuser.roles={{ inception_project_server_preauth_default_roles }}
|
2021-01-07 20:34:41 +01:00
|
|
|
{% for user_role in inception_project_server_preauth_users_roles %}
|
|
|
|
auth.user.{{ user_role.username }}.roles={{ user_role.roles }}
|
|
|
|
{% endfor %}
|
2021-11-04 12:23:34 +01:00
|
|
|
{% endif %}
|
2022-04-29 13:41:53 +02:00
|
|
|
{% for additional_setting in inception_project_additional_settings %}
|
2022-04-29 14:08:05 +02:00
|
|
|
{{ additional_setting }}
|
2022-04-29 13:41:53 +02:00
|
|
|
{% endfor %}
|
2021-01-08 17:12:52 +01:00
|
|
|
{% if inception_project_disable_crsf %}
|
|
|
|
wicket.core.csrf.enabled=false
|
|
|
|
wicket.core.csrf.no-origin-action=allow
|
|
|
|
wicket.core.csrf.conflicting-origin-action=allow
|
|
|
|
{% endif %}
|
|
|
|
{% if inception_project_server_behind_reverse_proxy %}
|
2022-04-29 13:41:53 +02:00
|
|
|
server.forward-headers-strategy=NATIVE
|
2021-01-08 17:12:52 +01:00
|
|
|
{% endif %}
|