Skip to content

Commit ba1550f

Browse files
committed
Deployed 6b62454 with MkDocs version: 1.6.1
1 parent e3b57c7 commit ba1550f

File tree

12 files changed

+373
-19
lines changed

12 files changed

+373
-19
lines changed

404.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@
105105
</li>
106106
<li class="toctree-l1"><a class="reference internal" href="/configuration/password-policies/">Password Policies</a>
107107
</li>
108+
<li class="toctree-l1"><a class="reference internal" href="/configuration/security-policies/">Security Policies</a>
109+
</li>
108110
</ul>
109111
<p class="caption"><span class="caption-text">User Guide</span></p>
110112
<ul>

configuration/password-policies/index.html

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -118,12 +118,12 @@
118118
</li>
119119
<li class="toctree-l2"><a class="reference internal" href="#password-reuse-prevention">Password Reuse Prevention</a>
120120
</li>
121-
<li class="toctree-l2"><a class="reference internal" href="#account-lockout">Account Lockout</a>
122-
</li>
123121
<li class="toctree-l2"><a class="reference internal" href="#example-configuration">Example Configuration</a>
124122
</li>
125123
</ul>
126124
</li>
125+
<li class="toctree-l1"><a class="reference internal" href="../security-policies/">Security Policies</a>
126+
</li>
127127
</ul>
128128
<p class="caption"><span class="caption-text">User Guide</span></p>
129129
<ul>
@@ -281,30 +281,27 @@ <h2 id="password-reuse-prevention">Password Reuse Prevention</h2>
281281
<li><strong>enable_reuse_prevention</strong>: Enable or disable prevention of password reuse. Default: <code>false</code>.</li>
282282
<li><strong>prevent_reuse</strong>: Number of previous passwords to check against for reuse. Default: <code>5</code>.</li>
283283
</ul>
284-
<h2 id="account-lockout">Account Lockout</h2>
285-
<p><strong>Note:</strong> The following settings are not implemented yet.</p>
286-
<ul>
287-
<li><strong>enable_lockout</strong>: Enable or disable account lockout after multiple failed login attempts. Default: <code>false</code>.</li>
288-
<li><strong>lockout_attempts</strong>: Number of failed login attempts before account is locked. Default: <code>5</code>.</li>
289-
<li><strong>lockout_duration</strong>: Duration of the lockout in minutes. Default: <code>15</code>.</li>
290-
</ul>
291284
<p>These settings can be customized by modifying the <code>config/password_policy.php</code> file. The default values are provided by
292-
the <a href="https://github.com/poweradmin/poweradmin/blob/b45f03be40b1194863739a44fea91500ff71b25c/lib/Domain/Config/PasswordPolicyDefaults.php">PasswordPolicyDefaults</a> class.</p>
285+
the <a href="https://github.com/poweradmin/poweradmin/blob/master/lib/Domain/Config/PasswordPolicyDefaults.php">PasswordPolicyDefaults</a>
286+
class.</p>
293287
<h2 id="example-configuration">Example Configuration</h2>
294288
<p>To enable the currently defined password policies, you can update the <code>config/password_policy.php</code> file with the
295289
following content:</p>
296290
<pre><code class="language-php">&lt;?php
297291

298292
return [
299293
'enable_password_rules' =&gt; true,
300-
'enable_lockout' =&gt; true,
301294
];
302295
</code></pre>
296+
<p>When <code>enable_password_rules</code> is set to <code>true</code>, passwords will be required to be at least 6 characters long and contain
297+
at least one uppercase letter, one lowercase letter, and one number. Special characters are not required by default, but
298+
when used, they must be from the allowed set: <code>!@#$%^&amp;*()+-=[]{}|;:,.&lt;&gt;?</code></p>
303299

304300
</div>
305301
</div><footer>
306302
<div class="rst-footer-buttons" role="navigation" aria-label="Footer Navigation">
307303
<a href="../../installation/composer/" class="btn btn-neutral float-left" title="Composer"><span class="icon icon-circle-arrow-left"></span> Previous</a>
304+
<a href="../security-policies/" class="btn btn-neutral float-right" title="Security Policies">Next <span class="icon icon-circle-arrow-right"></span></a>
308305
</div>
309306

310307
<hr/>
@@ -334,6 +331,8 @@ <h2 id="example-configuration">Example Configuration</h2>
334331
<span><a href="../../installation/composer/" style="color: #fcfcfc">&laquo; Previous</a></span>
335332

336333

334+
<span><a href="../security-policies/" style="color: #fcfcfc">Next &raquo;</a></span>
335+
337336
</span>
338337
</div>
339338
<script src="../../js/jquery-3.6.0.min.js"></script>

configuration/security-policies/index.html

Lines changed: 337 additions & 0 deletions
Large diffs are not rendered by default.

getting-started/docker-demo/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@
116116
</li>
117117
<li class="toctree-l1"><a class="reference internal" href="../../configuration/password-policies/">Password Policies</a>
118118
</li>
119+
<li class="toctree-l1"><a class="reference internal" href="../../configuration/security-policies/">Security Policies</a>
120+
</li>
119121
</ul>
120122
<p class="caption"><span class="caption-text">User Guide</span></p>
121123
<ul>

getting-started/overview/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,8 @@
118118
</li>
119119
<li class="toctree-l1"><a class="reference internal" href="../../configuration/password-policies/">Password Policies</a>
120120
</li>
121+
<li class="toctree-l1"><a class="reference internal" href="../../configuration/security-policies/">Security Policies</a>
122+
</li>
121123
</ul>
122124
<p class="caption"><span class="caption-text">User Guide</span></p>
123125
<ul>

getting-started/requirements/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,8 @@
126126
</li>
127127
<li class="toctree-l1"><a class="reference internal" href="../../configuration/password-policies/">Password Policies</a>
128128
</li>
129+
<li class="toctree-l1"><a class="reference internal" href="../../configuration/security-policies/">Security Policies</a>
130+
</li>
129131
</ul>
130132
<p class="caption"><span class="caption-text">User Guide</span></p>
131133
<ul>

index.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,8 @@
126126
</li>
127127
<li class="toctree-l1"><a class="reference internal" href="configuration/password-policies/">Password Policies</a>
128128
</li>
129+
<li class="toctree-l1"><a class="reference internal" href="configuration/security-policies/">Security Policies</a>
130+
</li>
129131
</ul>
130132
<p class="caption"><span class="caption-text">User Guide</span></p>
131133
<ul>
@@ -342,5 +344,5 @@ <h2 id="license">License</h2>
342344

343345
<!--
344346
MkDocs version : 1.6.1
345-
Build Date UTC : 2025-03-22 11:38:50.133817+00:00
347+
Build Date UTC : 2025-03-23 12:15:41.317996+00:00
346348
-->

installation/composer/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,8 @@
130130
</li>
131131
<li class="toctree-l1"><a class="reference internal" href="../../configuration/password-policies/">Password Policies</a>
132132
</li>
133+
<li class="toctree-l1"><a class="reference internal" href="../../configuration/security-policies/">Security Policies</a>
134+
</li>
133135
</ul>
134136
<p class="caption"><span class="caption-text">User Guide</span></p>
135137
<ul>

search.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@
105105
</li>
106106
<li class="toctree-l1"><a class="reference internal" href="./configuration/password-policies/">Password Policies</a>
107107
</li>
108+
<li class="toctree-l1"><a class="reference internal" href="./configuration/security-policies/">Security Policies</a>
109+
</li>
108110
</ul>
109111
<p class="caption"><span class="caption-text">User Guide</span></p>
110112
<ul>

search/search_index.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)