adds lazy app loading to the uwsgi inis.

This change is to resolve the aggressive forking that uwsgi does which
causes it to only have shared sessions across processes in the p11 plugin
and shared db handles as well

Change-Id: I766e50457474844e518c4be6e7dbdd60779064d7
This commit is contained in:
Paul Kehrer
2013-08-21 10:35:23 -05:00
parent 8a15a923d6
commit e893a14f3d
2 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@
socket = :9312
protocol = http
processes = 1
lazy = true
vacuum = true
no-default-app = true
memory-report = true

View File

@ -2,6 +2,7 @@
socket = :9311
protocol = http
processes = 1
lazy = true
vacuum = true
no-default-app = true
memory-report = true