Inside the buildout.cfg there is section for client1 and client2 if you installed the default cluster settings. So to configure the effective user for client1 (so that root can start the instance) you should add:
effective-user = plone
in the client1 section. And inside client2 section you can just add:
effective-user = ${client1:effective-user}
so that you don't have to edit at 2 places later. And do you want to enable webdav with that? Then just add:
zope-conf-additional =
enable-ms-author-via on
<webdav-source-server>
address localhost:1980
force-connection-close off
</webdav-source-server>
in the client sections. All done.
3 comments:
Hey,
The addition os the webdav enabling lines, should be done on both client1 and client2 sections?
Cheers,
Nuno
That's what I do. But of course using different ports for each client (client1 is usually 1980 and client2 is 1981).
Hey Abdullah,
Thanks for the tips. Seems to be working fine ...
N.
Post a Comment