# HG changeset patch # User Mads Kiilerich # Date 2020-03-31 18:18:19 # Node ID 7fe5fccbbb1fa0a06df3c34b3bb521ed7dc144ae # Parent 5da95e8a2d07abc740aef8ae89066516c650b9a4 uwsgi: drop unnecessary dependency of http module - just use http-socket directly The http plugin has more advanced http functionality like https and load balancing, duplicating what in many setups is handled by separate front-end servers. In this simple template, just use the basic http-socket. diff --git a/kallithea/lib/paster_commands/template.ini.mako b/kallithea/lib/paster_commands/template.ini.mako --- a/kallithea/lib/paster_commands/template.ini.mako +++ b/kallithea/lib/paster_commands/template.ini.mako @@ -115,7 +115,7 @@ timeout = 3600 [uwsgi] socket = /tmp/uwsgi.sock master = true -http = ${host}:${port} +http-socket = ${host}:${port} <%text>## set as daemon and redirect all output to file #daemonize = ./uwsgi_kallithea.log