Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grant-killian/b64aa6cabd18e9b0097257ee4a2dc614 to your computer and use it in GitHub Desktop.
Save grant-killian/b64aa6cabd18e9b0097257ee4a2dc614 to your computer and use it in GitHub Desktop.
To "Increase login security" we use the following patch .config for Sitecore.
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
<sitecore>
<settings>
<setting name="Login.DisableAutoComplete">
<patch:attribute name="value">true</patch:attribute>
</setting>
<setting name="Login.DisableRememberMe">
<patch:attribute name="value">true</patch:attribute>
</setting>
<setting name="Login.RememberLastLoggedInUserName">
<patch:attribute name="value">false</patch:attribute>
</setting>
</settings>
</sitecore>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment