Skip to content

Commit

Permalink
Documentation: Update security documentation with newly added securit…
Browse files Browse the repository at this point in the history
…y settings
  • Loading branch information
ywarnier committed Jul 17, 2021
1 parent 5521cae commit e769931
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion documentation/security.html
Expand Up @@ -26,6 +26,8 @@ <h2><b>Contents</b></h2>
<li><a href="#6.HSTS">HTTP Headers Security</a></li>
<li><a href="#7.Direct-web-access">Direct web access to files</a></li>
<li><a href="#8.Disable-webservices">Disable webservices</a></li>
<li><a href="#9.Change-password-first-login">Change password on first login</a></li>
<li><a href="#10.Hide-breadcrumb">Hide breadcrumb on unauthorized page load</a></li>
</ol>

<h2><a name="1.Disclosing-server-info"></a>1. Disclosing server info</h2>
Expand Down Expand Up @@ -204,7 +206,25 @@ <h2><a name="8.Disable-webservices">Disable webservices</a></h2>
$_configuration['disable_webservices'] = true;
</pre>
</p>
<h2>Authors</h2>

<h2><a name="9.Change-password-first-login">Change password on first login</a></h2>
<p>
To force users to change their password on their first login, add the configuration below:
<pre>
$_configuration['force_renew_password_at_first_login'] = true;
</pre>
and add the 'ask_new_password' checkbox extra field to users.
</p>

<h2><a name="10.Hide-breadcrumb">Hide breadcrumb on unauthorized page load</a></h2>
<p>
To hide the breadcrumb on pages with the "not allowed" error message, add the configuration below:
<pre>
$_configuration['hide_breadcrumb_if_not_allowed'] = true;
</pre>
</p>

<h2>Authors</h2>
<ul>
<li>Yannick Warnier, Zend Certified PHP Engineer, BeezNest Belgium SPRL,
<a href="mailto:yannick.warnier@beeznest.com">yannick.warnier@beeznest.com</a></li>
Expand Down

0 comments on commit e769931

Please sign in to comment.