我想为一个新的应用程序创建一个本地环境,并希望使用Roxy引导它。我已经在我的local.properties文件中指定了各种端口。
app-port=6060
xcc-port=6070
webdav-port=6090点击bootstrap命令ml local bootstrap,我的应用程序就设置好了,但是我没有看到为我的应用程序创建的WEBDAV端口。将创建所有其他端口。我做错了什么?
发布于 2017-04-10 02:03:44
您必须编辑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-server旁边使用它。
哈!
https://stackoverflow.com/questions/43303409
复制相似问题