我想傳遞參數給一個例子WSGI應用:傳遞命令行參數uwsgi腳本
config_file = sys.argv[1]
def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
return [b"Hello World %s" % config_file]
並運行:
uwsgi --http :9090 --wsgi-file test_uwsgi.py -???? config_file # argument for wsgi script
任何聰明的辦法我能做到嗎?無法在uwsgi文檔中找到它。也許有另一種方式爲wsgi應用程序提供一些參數? (ENV變量超出範圍)
應該不是你的'sys.argv'是'[「uwsgi」, 'foo','bar']'? –