Hosting on Azure

  • Hello,

    Looking to see if anyone has successfully deployed a Perch Runway site to Azure. I've gotten as far as adding this to my web.config

    Code
    1. <rewrite>
    2. <rules>
    3. <rule name="Perch Runway" stopProcessing="true">
    4. <match url=".*" ignoreCase="false" />
    5. <conditions logicalGrouping="MatchAll"> <add input="{URL}" pattern="^/perch" ignoreCase="false" negate="true" /> </conditions>
    6. <action type="Rewrite" url="/perch/core/runway/start.php" />
    7. </rule>
    8. </rules>
    9. </rewrite>


    However, it will only serve up PHP files and creates a 404 on other types trying to come through (.css, .svg, .js, etc). Any suggestions on how to properly format the rewrite rule so that it will work with Azure?