Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • David Tregoning 63 posts 236 karma points
    May 15, 2017 @ 12:21
    David Tregoning
    0

    Courier and URL rewrite

    Our client requires that their production backoffice to Umbraco to be run off a seperate sub domain from the front end of their production site so to achive this we are using the following rule:

    <rule name="Restrict Access BY SUBDOMAIN" enabled="true" stopProcessing="true">
                    <match url="umbraco(?!/Surface/)(?!/Api/)(?!/api/)(?!/webservices/)" />
                    <conditions logicalGrouping="MatchAny" trackAllCaptures="false">
                        <add input="{HTTP_HOST}" pattern="(([^.]+)\.)?subdomain.domain.com" negate="true" />
                    </conditions>
                    <action type="Redirect" url="/403/" />
                </rule>
    

    This works fine in that if a person types in http://domain.com/umbraco they get a 403 and if a person types in http://sub.domain.com/umbraco they get access to the back end. However when we now try to courier files from our development site to our production site we get a courier error.

    Does anybody know what I need to ammend in my regex to allow courier to deploy content?

    I have tried to ammend the courier config to reference the sub.domain.com site but it still failed

    Many thanks

  • Chriztian Steinmeier 2800 posts 8791 karma points MVP 8x admin c-trib
    May 15, 2017 @ 12:27
    Chriztian Steinmeier
    0

    Hi David,

    I've had a similar problem on Umbraco Cloud, where the problem was that the UmbracoDeploy / Courier requests went to /App_Plugins/* which wasn't handled in the rewrites.

    I can't really tell if this is related... can you see the requested path(s) that get rejected?

    /Chriztian

  • 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.

Please Sign in or register to post replies