-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #119 from sebadob/cust-root-ca-matrix-client
Cust root ca matrix client
- Loading branch information
Showing
13 changed files
with
154 additions
and
71 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
|
||
|
||
<!-- Custom HTML head --> | ||
|
||
<meta name="description" content=""> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta name="theme-color" content="#ffffff" /> | ||
|
@@ -172,7 +172,7 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C | |
# registrations with '[email protected]' (default: '') | ||
#USER_REG_DOMAIN_RESTRICTION=some-domain.com | ||
|
||
# If set to 'true', this will validate the remote peer IP address with each request | ||
# If set to 'true', this will validate the remote peer IP address with each request | ||
# and compare it with the IP which was used during the initial session creation / login. | ||
# If the IP is different, the session will be rejected. | ||
# This is a security hardening and prevents stolen access credentials, for instance if | ||
|
@@ -181,10 +181,10 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C | |
# only happen if an attacker has direct access to the machine itself. | ||
# | ||
# If your users are using mobile networks and get new IP addresses all the time, this | ||
# means they have to do a new login each time. This is no big deal at all with | ||
# means they have to do a new login each time. This is no big deal at all with | ||
# Webauthn / FIDO keys anyway and should not be a reason to deactivate this feature. | ||
# | ||
# Caution: If you are running behind a reverse proxy which does not provide the | ||
# Caution: If you are running behind a reverse proxy which does not provide the | ||
# X-FORWARDED-FOR header correctly, or you have the PROXY_MODE in this config disabled, | ||
# this feature will not work. You can validate the IPs for each session in the Admin | ||
# UI. If these are correct, your setup is okay. | ||
|
@@ -301,7 +301,7 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C | |
# will be DELETED and OVERWRITTEN with a migration from the | ||
# given database with this variable. Can be used to migrate | ||
# between different databases. | ||
# | ||
# | ||
# !!! USE WITH CARE !!! | ||
#MIGRATE_DB_FROM=sqlite:data/rauthy.db | ||
|
||
|
@@ -312,7 +312,7 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C | |
############# E-MAIL ################ | ||
##################################### | ||
|
||
# Will be used as the prefix for the E-Mail subject for each E-Mail | ||
# Will be used as the prefix for the E-Mail subject for each E-Mail | ||
# that will be sent out to a client. | ||
# This can be used to further customize your deployment. | ||
# default: "Rauthy IAM" | ||
|
@@ -353,16 +353,16 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C | |
|
||
# The time in ms when to log a warning, if a request waited | ||
# longer than this time. This is an indicator, that you have | ||
# more concurrent logins than allowed and may need config | ||
# more concurrent logins than allowed and may need config | ||
# adjustments, | ||
# if this happens more often. (default: 500) | ||
#HASH_AWAIT_WARN_TIME=500 | ||
|
||
# JWKS auto rotate cronjob. This will (by default) rotate | ||
# all JWKs every 1. day of the month. If you need smaller | ||
# JWKS auto rotate cronjob. This will (by default) rotate | ||
# all JWKs every 1. day of the month. If you need smaller | ||
# intervals, you may adjust this value. For security reasons, | ||
# you cannot fully disable it. | ||
# In a HA deployment, this job will only be executed on the | ||
# In a HA deployment, this job will only be executed on the | ||
# current cache leader at that time. | ||
# Format: "sec min hour day_of_month month day_of_week year" | ||
# default: "0 30 3 1 * * *" | ||
|
@@ -392,13 +392,18 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C | |
#EVENT_MATRIX_ROOM_ID= | ||
#EVENT_MATRIX_ACCESS_TOKEN= | ||
#EVENT_MATRIX_USER_PASSWORD= | ||
# Optional path to a PEM Root CA certificate file for the Matrix client. | ||
#EVENT_MATRIX_ROOT_CA_PATH=path/to/my/root_ca_cert.pem | ||
# May be set to disable the TLS validation for the Matrix client. | ||
# default: false | ||
#EVENT_MATRIX_DANGER_DISABLE_TLS_VALIDATION=false | ||
|
||
# The Webhook for Slack Notifications. | ||
# If left empty, no messages will be sent to Slack. | ||
#EVENT_SLACK_WEBHOOK= | ||
|
||
# The notification level for events. Works the same way as a logging level. | ||
# For instance: 'notice' means send out a notifications for all events with | ||
# The notification level for events. Works the same way as a logging level. | ||
# For instance: 'notice' means send out a notifications for all events with | ||
# the info level or higher. | ||
# Possible values: | ||
# - info | ||
|
@@ -413,8 +418,8 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C | |
# default: 'notice' | ||
EVENT_NOTIFY_LEVEL_SLACK=notice | ||
|
||
# Define the level from which on events should be persisted inside the | ||
# database. All events with a lower level will be lost, if there is no | ||
# Define the level from which on events should be persisted inside the | ||
# database. All events with a lower level will be lost, if there is no | ||
# active event subscriber. | ||
# Possible values: | ||
# - info | ||
|
@@ -437,7 +442,7 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C | |
# The level for the generated Event after a user has reset its password | ||
# default: notice | ||
EVENT_LEVEL_USER_PASSWORD_RESET=notice | ||
# The level for the generated Event after a user has been given the | ||
# The level for the generated Event after a user has been given the | ||
# 'rauthy_admin' role | ||
# default: notice | ||
EVENT_LEVEL_RAUTHY_ADMIN=notice | ||
|
@@ -447,26 +452,26 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C | |
# The level for the generated Event after the JWKS has been rotated | ||
# default: notice | ||
EVENT_LEVEL_JWKS_ROTATE=notice | ||
# The level for the generated Event after DB secrets have been migrated | ||
# The level for the generated Event after DB secrets have been migrated | ||
# to a new key | ||
# default: notice | ||
EVENT_LEVEL_SECRETS_MIGRATED=notice | ||
# The level for the generated Event after a Rauthy instance has been | ||
# The level for the generated Event after a Rauthy instance has been | ||
# started | ||
# default: info | ||
EVENT_LEVEL_RAUTHY_START=info | ||
# The level for the generated Event after a Rauthy entered a healthy | ||
# The level for the generated Event after a Rauthy entered a healthy | ||
# state (again) | ||
# default: notice | ||
EVENT_LEVEL_RAUTHY_HEALTHY=notice | ||
# The level for the generated Event after a Rauthy entered an unhealthy | ||
# The level for the generated Event after a Rauthy entered an unhealthy | ||
#state | ||
# default: critical | ||
EVENT_LEVEL_RAUTHY_UNHEALTHY=critical | ||
# The level for the generated Event after an IP has been blacklisted | ||
# default: warning | ||
EVENT_LEVEL_IP_BLACKLISTED=warning | ||
# The level for the generated Event after certain amounts of false | ||
# The level for the generated Event after certain amounts of false | ||
# logins from an IP | ||
# default: criticao | ||
EVENT_LEVEL_FAILED_LOGINS_25=critical | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.