我试图将War文件部署到Azure,但是失败了,这就是我的工作。
首先,我尝试通过将war文件拖到D:\home\site\wwwroot\webapps
下来部署战争,然后重新启动应用程序服务,但.war文件没有解压缩。
第二,我尝试使用这些steps使用Power Shell进行部署,但是出现了此错误消息:
Invoke-RestMethod: You do not have permission to view this directory or page.
任何人都可以解释我在做什么错!
顺便说一下,我在wwwroot下有web.config文件:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="4294967295" />
</requestFiltering>
</security>
<httpPlatform processPath="%AZURE_TOMCAT85_HOME%\bin\startup.bat"> <!-- arguments="-config D:\home\site\wwwroot\conf\server.xml start"> -->
<environmentVariables>
<environmentVariable name="CATALINA_OPTS" value="-Dport.http=%HTTP_PLATFORM_PORT% -Xms512m -Xmx2048m" />
<environmentVariable name="CATALINA_HOME" value="%AZURE_TOMCAT85_HOME%" />
</environmentVariables>
</httpPlatform>
</system.webServer>
</configuration>