So... What are detailed steps to setup wsgidav via uWSGI on Cherokee... I'm definitelly frustrated... :D (I don't like uWSGI way...)
Pozdrawiam Jędrzej Nowak On Sat, Sep 18, 2010 at 7:40 AM, Roberto De Ioris <[email protected]> wrote: > > >> Has anyone been successful running Cherokee + uwSGI + wsgidav? If so, >> can you share your magic configuration? >> -- >> Daniel > > > This is what i am using (set the directory in FilesystemProvider) : > > <uwsgi> > > <master/> > <processes>4</processes> > <socket>127.0.0.1:4041</socket> > > <![CDATA[ > > from wsgidav.fs_dav_provider import FilesystemProvider > from wsgidav.wsgidav_app import DEFAULT_CONFIG, WsgiDAVApp > > provider = FilesystemProvider('/Users/roberto/webdav') > > config = DEFAULT_CONFIG.copy() > > config.update({ > "provider_mapping": {"/": provider}, > "user_mapping": {}, > "verbose": 1, > "enable_loggers": [], > "propsmanager": True, > "locksmanager": True, > "domaincontroller": None, > }) > > application = WsgiDAVApp(config) > > ]]> > > > </uwsgi> > > > -- > Roberto De Ioris > http://unbit.it > > > > > -- > > _______________________________________________ > Cherokee mailing list > [email protected] > http://lists.octality.com/listinfo/cherokee > _______________________________________________ Cherokee mailing list [email protected] http://lists.octality.com/listinfo/cherokee
