我在 CentOS 6.3 上运行 Python 2.7、Apache + mod_wsgi
当我在本地主机上时,一切正常。但是,当我在 Azure 中的 vm 上运行代码时,我看不到会话信息跨页面保留。
基本上在我看来,我有类似的东西:
@frontend.route('/')
def index():
session['foo'] = 'bar'
print session['foo']
return redirect(url_for("frontend.page2"))
@frontend.route('page2')
def page2():
print session
打印输出为:
bar
<SecureCookieSession {}>
我对 apache 的 wsgi 配置是:
WSGISocketPrefix /var/run/wsgi
<VirtualHost *:80>
ServerName example.com
ServerAlias example.com
WSGIDaemonProcess myproj threads=5 processes=5
WSGIScriptAlias / /home/mydir/myproj/apache/myproj.wsgi
<Directory /home/mydir/myproj>
WSGIScriptReloading On
WSGIProcessGroup myproj
WSGIApplicationGroup %{GLOBAL}
Order deny,allow
Allow from all
</Directory>
</VirtualHost>
我有 secret_key 集:
app.secret_key = os.urandom(24)
我已经尝试过设置 SERVER_NAME 但它没有帮助:
app.config['SERVER_NAME'] = 'example.com'
关于如何进行更多调试的任何想法?
谢谢!