我正在尝试运行一个使用 blob 存储的天蓝色应用程序。我尝试使用以下示例工具包: https ://github.com/Interop-Bridges/Windows-Azure-Sample-Kit-4-PHP/tree/master/GuestBookUsingBlobs (我更改了 index.php 中的存储帐户和密钥)
所以我的问题是,在我将它部署到天蓝色后,我得到 500 个内部服务器错误,但是在 localhost 上它工作正常!
怎么了?谢谢!
(一个简单的 phpinfo() 文件在 azure 中也可以正常工作)
<?xml version="1.0"?>
<configuration>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<httpErrors errorMode="Detailed" />
<asp scriptErrorSentToBrowser="true"/>
<defaultDocument>
<files>
<clear/>
<add value="index.php" />
</files>
</defaultDocument>
<staticContent>
<remove fileExtension=".svg" />
<remove fileExtension=".eot" />
<remove fileExtension=".woff" />
<mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
<mimeMap fileExtension=".eot" mimeType="application/vnd.ms-fontobject" />
<mimeMap fileExtension=".woff" mimeType="application/x-woff" />
</staticContent>
</system.webServer>
<system.web>
<customErrors mode="Off"/>
<compilation debug="true"/>
</system.web>
</configuration>
以上更改的 web.config
我用这个进行部署:http ://rhizohm.net/irhetoric/post/2011/04/18/How-To-Do-PHP-Deployment-To-Windows-Azure.aspx