@@ -404,7 +404,7 @@ <h2 id="testing--local-evaluation"><a class="header" href="#testing--local-evalu
404404< p > For getting a first look at Rauthy, you can start it with docker (or any other container runtime) on your localhost.
405405The image contains a basic default config which is sufficient for local testing (don't use it in production, it
406406contains hardcoded secrets).</ p >
407- < pre > < code > docker run -it --rm -e LOCAL_TEST=true -p 8443:8443 ghcr.io/sebadob/rauthy:0.32.5
407+ < pre > < code > docker run -it --rm -e LOCAL_TEST=true -p 8443:8443 ghcr.io/sebadob/rauthy:0.32.6
408408</ code > </ pre >
409409< p > To proceed, go to < strong > < a href ="getting_started/first_start.html "> First Start</ a > </ strong > , or do the production setup below to have persistence.</ p >
410410< h2 id ="testing--evaluation-with-e-mail "> < a class ="header " href ="#testing--evaluation-with-e-mail "> Testing / Evaluation with E-Mail</ a > </ h2 >
@@ -427,7 +427,7 @@ <h2 id="testing--evaluation-with-e-mail"><a class="header" href="#testing--evalu
427427
428428 rauthy:
429429 container_name: rauthy-test
430- image: ghcr.io/sebadob/rauthy:0.32.5
430+ image: ghcr.io/sebadob/rauthy:0.32.6
431431 environment:
432432 - LOCAL_TEST=true
433433 - SMTP_URL=mailcrab
@@ -522,7 +522,7 @@ <h2 id="production-setup"><a class="header" href="#production-setup">Production
522522 -v $(pwd)/rauthy/data:/app/data \
523523 -p 8443:8443 \
524524 --name rauthy \
525- ghcr.io/sebadob/rauthy:0.32.5
525+ ghcr.io/sebadob/rauthy:0.32.6
526526</ code > </ pre >
527527< ul >
528528< li > < code > -v $(pwd)/rauthy/config.toml:/app/config.toml</ code > mounts the config in the correct place</ li >
@@ -713,7 +713,7 @@ <h3 id="create-and-apply-the-stateful-set"><a class="header" href="#create-and-a
713713 fsGroup: 10001
714714 containers:
715715 - name: rauthy
716- image: ghcr.io/sebadob/rauthy:0.32.5
716+ image: ghcr.io/sebadob/rauthy:0.32.6
717717 securityContext:
718718 # User ID 10001 is actually built into the container
719719 # at the creation for better security
@@ -5101,7 +5101,7 @@ <h2 id="apparmor"><a class="header" href="#apparmor">AppArmor</a></h2>
51015101#session_validate_ip = true
51025102
51035103# By default, Rauthy will log a warning into the logs, if an active
5104- # password reset form is being access multiple times from different
5104+ # password reset form is being accessed multiple times from different
51055105# hosts. You can set this to `true` to actually block any following
51065106# request after the initial one. This hardens the security of the
51075107# password reset form a bit more, but will create problems with
@@ -5195,7 +5195,7 @@ <h2 id="apparmor"><a class="header" href="#apparmor">AppArmor</a></h2>
51955195#
51965196# default: false
51975197# overwritten by: AUTH_HEADERS_ENABLE
5198- #enable = true
5198+ #enable = false
51995199
52005200# Configure the header names being used for the different values. You
52015201# can change them to your needs, if you cannot easily change your
@@ -5381,7 +5381,7 @@ <h2 id="apparmor"><a class="header" href="#apparmor">AppArmor</a></h2>
53815381nodes = ["1 localhost:8100 localhost:8200"]
53825382
53835383# You can set the listen addresses for both the API and Raft servers.
5384- # These need to somewaht match the definition for the `nodes` above,
5384+ # These need to somewhat match the definition for the `nodes` above,
53855385# with the difference, that a `node` address can be resolved via DNS,
53865386# while the listen addresses must be IP addresses.
53875387#
@@ -5841,7 +5841,7 @@ <h2 id="apparmor"><a class="header" href="#apparmor">AppArmor</a></h2>
58415841#
58425842# default: false
58435843# overwritten by: ENABLE_DYN_CLIENT_REG
5844- #enable = true
5844+ #enable = false
58455845
58465846# If specified, this secret token will be expected during
58475847# dynamic client registrations to be given as a
@@ -6725,7 +6725,7 @@ <h2 id="apparmor"><a class="header" href="#apparmor">AppArmor</a></h2>
67256725#
67266726# default: text
67276727# overwritten by: LOG_FMT
6728- #log_fmt = 'json '
6728+ #log_fmt = 'text '
67296729
67306730[mfa]
67316731# If 'true', MFA for an account must be enabled to access the
@@ -6829,7 +6829,7 @@ <h2 id="apparmor"><a class="header" href="#apparmor">AppArmor</a></h2>
68296829#
68306830# default: http_https
68316831# overwritten by: LISTEN_SCHEME
6832- scheme = 'http '
6832+ scheme = 'http_https '
68336833
68346834# The Public URL of the whole deployment
68356835# The LISTEN_SCHEME + PUB_URL must match the HTTP ORIGIN HEADER
@@ -7204,7 +7204,7 @@ <h2 id="apparmor"><a class="header" href="#apparmor">AppArmor</a></h2>
72047204#
72057205# default: false
72067206# overwritten by: WEBAUTHN_FORCE_UV
7207- #force_uv = true
7207+ #force_uv = false
72087208
72097209# Can be set to 'true' to disable password expiry for users that
72107210# have at least one active passkey. When set to 'false', the same
0 commit comments