Umbraco Security Hardening
Learn how to strengthen the security of your Umbraco installation, and reduce the risk of unauthorized access.
Lock down access to your Umbraco folder (IIS)
<rule name="Ignore" stopProcessing="true">
<match url="^(?:umbraco/api|umbraco/surface)/" />
<action type="None" />
</rule><rule name="Ignore" stopProcessing="true">
<match url="^(?:umbraco/api|umbraco/surface|umbraco/webservices)/" />
<action type="None" />
</rule><rule name="Allowed IPs" stopProcessing="true">
<match url="^(?:umbraco)(?:/|$)" />
<conditions>
<add input="{REMOTE_ADDR}" negate="true" pattern="213.3.10.8|88.4.43.108" />
</conditions>
<action type="AbortRequest" />
</rule>Last updated
Was this helpful?