manager.py runfcgi host=127.0.0.1 port=9992 daemonize=false
then, when i start nginx as webserver, i get an error.
settings.py
from lib import rpc
rpc.backend = ARPCClient({xxxxxx})
asite/views.py
from lib import rpc
AttributeError at /
'rpc' object has no attribute 'backend'
it seems that you don’t have the import statement for the settings
or substitute * with rpc.backend if you need only that.