2017-04-09 46 views
1

我想創建一個新的應用程序的本地環境,並希望使用Roxy引導它。我在我的local.properties文件中指定了各種端口。如何使用Roxy爲我的應用程序創建一個webdav端口?

app-port=6060 
xcc-port=6070 
webdav-port=6090 

在命中引導命令ml local bootstrap我的應用程序設置,但我沒有看到我的應用程序創建一個WebDAV端口。所有其他端口被創建。我究竟做錯了什麼?

回答

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!

+0

不會創建另一個http服務器嗎? – basari66

+0

Roxy會注意到webDAV標誌,並創建一個webdav服務器。這也是MarkLogic在內部存儲的方式。 – grtjn

相關問題