我想为新应用程序创建一个本地环境,并希望使用Roxy来引导它。我在local.properties
文件中指定了各种端口。
app-port=6060
xcc-port=6070
webdav-port=6090
在点击引导命令ml local bootstrap
后,我的应用程序已设置但我没有看到为我的应用程序创建的WEBDAV端口。所有其他端口都已创建。我做错了什么?
答案 0 :(得分:3)
您必须编辑deploy/ml-config.xml
,并自行添加支持webdav的http服务器。你应该可以使用类似的东西:
<http-server>
<http-server-name>${app-name}-webdav</http-server-name>
<port>${webdav-port}</port>
<webDAV>true</webDAV>
<database name="${content-db}"/>
<root>/</root>
<authentication>${authentication-method}</authentication>
<default-user name="${default-user}"/>
</http-server>
您可以在ml-config.xml中的现有http服务器旁边使用它。
HTH!