我正在开发一个 azure webapp 项目。为了让我的应用程序正常工作,我需要在服务器上安装第三方开源软件。我发现在 azure webapp 上执行此操作的唯一方法是手动复制项目中软件的所有文件夹,然后添加所有必需的环境变量,并向路径系统变量添加一些路径。我找到了如何添加系统变量,但我找不到在 azure webapp 上设置路径变量的方法。
问问题
4804 次
1 回答
11
您可以通过XDT 转换( X ML文档转换)来实现这一点。
查看https://github.com/projectkudu/kudu/wiki/Xdt-transform-samples
添加环境变量
以下将注入一个名为 的环境变量
FOO
,其值为BAR
,并将一个文件夹添加到 PATH 中:
<?xml version="1.0"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<system.webServer>
<runtime xdt:Transform="InsertIfMissing">
<environmentVariables xdt:Transform="InsertIfMissing">
<add name="FOO" value="BAR" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
<add name="PATH" value="%PATH%;%HOME%\BAR" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
</environmentVariables>
</runtime>
</system.webServer>
</configuration>
将其放入 as d:\home\site\applicationHost.xdt
,重新启动 Web App 并检查 Kudu 中新修改的%PATH%
内容 ( https://sitename.scm.azurewebsites.net/DebugConsole )。
d:\home>set PATH
Path=D:\home\site\deployments\tools;[...];D:\home\BAR
于 2016-07-25T21:34:04.253 回答