運行WSGI腳本,我已經得到了指令傳遞的Apache2摘要認證信息通過mod_wsgi的
<VirtualHost *>
<Location />
AuthType Digest
AuthName "global"
AuthDigestDomain/
AuthUserFile /root/apache_users
<Limit GET>
Require valid-user
</Limit>
</Location>
WSGIScriptAlias//some/script.wsgi
WSGIDaemonProcess mywsgi user=someuser group=somegroup processes=2 threads=25
WSGIProcessGroup mywsgi
ServerName some.example.org
</VirtualHost>
我想在/some/script.wsgi知道
def application(environ, start_response):
start_response('200 OK', [
('Content-Type', 'text/plain'),
])
return ['Hello']
什麼用戶已登錄。
我該怎麼做?在mod_wsgi documentation
def application(environ, start_response):
start_response('200 OK', [
('Content-Type', 'text/plain'),
])
return ['Hello %s' % environ['REMOTE_USER']]
的更多信息:
非常感謝。 – 2016-07-06 16:02:20