# HG changeset patch # User souliane # Date 1395612402 -3600 # Node ID 454c7685471dfb48177cb005e02f9644db1c967f # Parent ec877557588611905dd7f148edd9cf37099fa4bd misc: updated setup.py and INSTALL diff -r ec8775575886 -r 454c7685471d INSTALL --- a/INSTALL Sun Mar 23 23:06:12 2014 +0100 +++ b/INSTALL Sun Mar 23 23:06:42 2014 +0100 @@ -69,6 +69,20 @@ or something else) on your XMPP server, create a profile on SàT named "libervia", and plug the SàT profile to this account. +== Configuration == + +You can configure the Libervia service from the SàT configuration file, for example: + + [libervia] + connection_type=both + port=8080 + port_https=8443 + ssl_certificate=libervia.pem + redirect_to_https=1 + unsecure_warning=1 + +Check the wiki for more information: http://wiki.goffi.org/wiki/Configuration/en + == Usage == The four components must be launched in the following order: diff -r ec8775575886 -r 454c7685471d setup.py --- a/setup.py Sun Mar 23 23:06:12 2014 +0100 +++ b/setup.py Sun Mar 23 23:06:42 2014 +0100 @@ -188,7 +188,7 @@ scripts=[], zip_safe=False, dependency_links=['http://www.blarg.net/%7Esteveha/pyfeed-0.7.4.tar.gz', 'http://www.blarg.net/%7Esteveha/xe-0.7.4.tar.gz'], - install_requires=['sat', 'twisted', 'pyfeed', 'xe', 'txjsonrpc', 'zope'], + install_requires=['sat', 'twisted', 'pyfeed', 'xe', 'txjsonrpc', 'zope', 'pyopenssl'], cmdclass={'install': CustomInstall}, )