在启用了Composer的Azure WebApp上配置Imagick

时间:2017-03-07 07:53:30

标签: php azure composer-php imagick

我设法让Imagick在Azure WebApp上工作,跟随@Saurabh Kumar手册http://techblog.saurabhkumar.com/2015/12/setting-up-imagemagick-for-php-on-azure.html(替换为php7的相关软件包),但是一旦我在同一个App上启用Composer扩展,Azure就会失去PATH imagick。

There is a comment on MS blog建议编辑Composer applicationHost.xdt而不是为Imagick创建新的applicationHost.xdt文件,如果安装了Composer的话。 我已经尝试了但它破坏了整个应用程序(HTTP错误503)。

有没有办法让Imagick和Composer都能在Azure WebApp上运行?

1 个答案:

答案 0 :(得分:1)

我转发了你的问题。经过一番调查,我发现了一种方法可以让Imagick和Composer都能在Azure WebApp上运行。我知道它并不漂亮,但确实有效。

1)使用FTP或SCM(websitename.SCM.azurewebsites.net)进入D:\home\SiteExtensions\ComposerExtension fodler,并删除applicationHost.xdt文件。

2)将上面删除的文件的内容合并到D:\home\site\applicationHost.xdt。之后,xdt文件应如下所示:

<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform"> 
   <system.applicationHost>
     <sites>
       <site name="%XDT_SCMSITENAME%" xdt:Locator="Match(name)">
         <application path="/Composer"  applicationPool="%XDT_APPPOOLNAME%" xdt:Transform="Insert">
          <virtualDirectory path="/" physicalPath="%XDT_EXTENSIONPATH%" />
        </application>
      </site>
    </sites>
  </system.applicationHost>
  <system.webServer> 
    <runtime xdt:Transform="InsertIfMissing"> 
      <environmentVariables xdt:Transform="InsertIfMissing"> 
        <add name="MAGICK_HOME" value="d:\home\site\ext\" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" /> 
        <add name="MAGICK_CODER_MODULE_PATH" value="d:\home\site\imagickwin\" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" /> 
        <add name="APPSETTING_COMMAND" value="%HOME%\SiteExtensions\ComposerExtension\Hooks\deploy.cmd" />
        <add name="COMPOSER_ARGS" value="--prefer-dist --no-dev --optimize-autoloader --no-progress" />
        <add name="PATH" value="%PATH%;%PATH%d:\home\site\ext\;%HOME%\SiteExtensions\ComposerExtension\Commands;%APPDATA%\Composer\vendor\bin" />
      </environmentVariables> 
    </runtime> 
    <rewrite xdt:Transform="InsertIfMissing">
      <rules xdt:Transform="InsertIfMissing">
        <rule name="RequestBlockingRule1" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" stopProcessing="true">
            <match url=".*" />
            <conditions>
                <add input="{URL}" pattern="vendor/(.*)$" />
            </conditions>
            <action type="CustomResponse" statusCode="403" statusReason="Forbidden: Access is denied." statusDescription="You do not have permission to view this directory or page using the credentials that you supplied." />
        </rule>
      </rules>
    </rewrite>
  </system.webServer> 
</configuration>

3)现在,重启你的应用,他们应该一起工作。

enter image description here

enter image description here