我正在使用CherryPy开发一个Web应用程序。我正在检查Chrome浏览器中的审核,它告诉我要考虑“转发使用图片,脚本和样式表发送Cookie。”
我搜索了这个主题,但没有快乐。这是我的配置:
...
...
...
'/static':
{
"tools.caching.on" : True,
"tools.caching.force" : True,
"tools.caching.delay" : 0,
"tools.expires.on" : True,
"tools.expires.secs" : 60*24*365,
"tools.gzip.on" : True,
"tools.gzip.mime_types": ['text/*', 'image/*', 'application/*'],
"tools.staticdir.on" : True,
"tools.staticdir.root": abspath(dirname(__file__)),
"tools.staticdir.dir" : "static"
},
...
...
要清楚,我不想继承一些自定义类。我想使用工具或设置上面的一些值,充其量。任何帮助表示赞赏。
答案 0 :(得分:2)
在静态目录配置部分设置"tools.sessions.on": False
已解决问题。