mod_python
サーバー構成に関する情報を出力するテスト ページ スクリプトがあります。あなたが置くことができます
SetHandler mod_python
PythonHandler mod_python.testhandler
あなた.htaccess
に、それはページを表示します。
今私の質問: 似たようなものも存在しmod_wsgi
ますか?
mod_python
サーバー構成に関する情報を出力するテスト ページ スクリプトがあります。あなたが置くことができます
SetHandler mod_python
PythonHandler mod_python.testhandler
あなた.htaccess
に、それはページを表示します。
今私の質問: 似たようなものも存在しmod_wsgi
ますか?
いいえ。ただし、environ のキーを反復処理することで、ある種の役立つものを作成できます。
def application(env, respond):
respond('200 OK', [('Content-Type', 'text/plain')])
return ['\n'.join('%s: %s' % (k, v) for (k, v) in env.iteritems())]
ここにテストページのようなものをまとめました。便宜上、ここで共有します。
def tag(t, **k):
kk = ''.join(' %s=%r' % kv for kv in k.items())
format = '<%s%s>%%s</%s>' % (t, kk, t)
return lambda content: format % content
def table(d):
from cgi import escape
escq = lambda s: escape(s, quote=True)
tr = tag('tr')
th = tag('th')
td_code = lambda content: tag('td')(tag('code')(content))
return tag('table', border='1')(''.join((
'\n\t' + tr(th('Key') + th('Value') + th('Repr')) + '\n',
''.join(('\t' + tr(td_code('%s') + td_code('%s') + td_code('%s')) + '\n') % (k, escq(str(v)), escq(repr(v))) for k, v in sorted(d.items())),
))) + '\n'
def application(environ, start_response):
import os
l = []
from wsgiref.headers import Headers
h = Headers(l)
h.add_header('Content-Type', 'text/html')
start_response('200 OK', l)
yield '<html><head><title>my mod_wsgi test page</title></head><body>\n'
# yield '<h3>General information</h3>\n'
# yield table({})
yield '<h3>Process info</h3>\n'
yield table(dict(
wd=os.getcwd(),
pid=os.getpid(),
ppid=os.getppid(),
uid=os.getuid(),
gid=os.getgid(),
))
yield '<h3>Environment</h3>\n'
yield table(environ)