Я только что запустил новый проект Strapi на своей локальной машине и храню его в репозитории bitbucket. Поэтому мне нужно развернуть его Azure в среде Windows. Я успешно развернул Postgres на бесплатной основе, и теперь у меня есть веб-приложение для узла, у которого возникла проблема с правилами web-конфигурации и развертыванием
Я попытался поискать пользовательский файл web.config, чтобы перенаправить все запросы на все /public
.
<?xml version="1.0" encoding="utf-8"?>
<!--
This configuration file is required if iisnode is used to run node processes behind
IIS or IIS Express. For more information, visit:
https://github.com/tjanczuk/iisnode/blob/master/src/samples/configuration/web.config
-->
<configuration>
<system.webServer>
<!-- Visit http://blogs.msdn.com/b/windowsazure/archive/2013/11/14/introduction-to-websockets-on-windows-azure-web-sites.aspx for more information on WebSocket support -->
<webSocket enabled="false" />
<handlers>
<!-- Indicates that the server.js file is a node.js site to be handled by the iisnode module -->
<add name="iisnode" path="{NodeStartFile}" verb="*" modules="iisnode"/>
</handlers>
<rewrite>
<rules>
<!-- Do not interfere with requests for node-inspector debugging -->
<rule name="NodeInspector" patternSyntax="ECMAScript" stopProcessing="true">
<match url="^{NodeStartFile}\/debug[\/]?" />
</rule>
<!-- First we consider whether the incoming URL matches a physical file in the /public folder -->
<rule name="StaticContent">
<action type="Rewrite" url="public{PATH_INFO}"/>
</rule>
<rule name="Static Assets" stopProcessing="true">
<match url="([\S]+[.](html|htm|svg|js|css|png|gif|jpg|jpeg))" />
<action type="Rewrite" url="build/{R:1}"/>
</rule>
<rule name="Index" stopProcessing="true">
<match url="^$" />
<action type="Rewrite" url="public/index.html"/>
</rule>
<!-- All other URLs are mapped to the node.js site entry point -->
<rule name="DynamicContent">
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="True"/>
</conditions>
<action type="Rewrite" url="{NodeStartFile}"/>
</rule>
</rules>
</rewrite>
<!-- Make sure error responses are left untouched -->
<httpErrors existingResponse="PassThrough" />
</system.webServer>
</configuration>
Очевидно, это не удовлетворяет требованиям маршрутизации Strapi. Вместо этого я получил 500 внутренних ошибок маршрутизации. Как правильно настроить, где я могу получить доступ к моей панели администратора, а также API? Как настроить мой deploy.cmd
на strapi build
? Какой правильный подход для развертывания в Azure?
Я также зарегистрировал проблему для них в документации по ней
https://github.com/strapi/strapi/issues/3576