Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
We would like to turn off public access to the /umbraco URL, and have the backoffice only function on a different domain behind our VPN. What would be the best way of doing this?
Thanks! Ben
Found this blog post which looks like what I need. Will report back
http://www.attackmonkey.co.uk/blog/2015/07/protecting-your-admin-url-with-iis-rewrite#comments
Ben, thanks for link, great article.
Do you think this is reliable way to restriction backoffice login ?
I'm implementing on my dev server today and will be testing. I'll post back with my results!
So I actually couldn't get this one to work, so I ended up using a simpler method:
<rewrite> <rules> <rule name="Restrict access" stopProcessing="true"> <match url="umbraco(?!/Surface/)" /> <conditions logicalGrouping="MatchAny" trackAllCaptures="false"> <add input="{HTTP_HOST}" matchType="Pattern" pattern="root-url-you-want-to-redirect-to.com" ignoreCase="true" negate="true" /> </conditions> <action type="Redirect" url="/" appendQueryString="false" /> </rule> </rules> </rewrite>
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
Restrict backoffice login to a different domain behind company VPN
We would like to turn off public access to the /umbraco URL, and have the backoffice only function on a different domain behind our VPN. What would be the best way of doing this?
Thanks! Ben
Found this blog post which looks like what I need. Will report back
http://www.attackmonkey.co.uk/blog/2015/07/protecting-your-admin-url-with-iis-rewrite#comments
Ben, thanks for link, great article.
Do you think this is reliable way to restriction backoffice login ?
I'm implementing on my dev server today and will be testing. I'll post back with my results!
So I actually couldn't get this one to work, so I ended up using a simpler method:
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.