如何使用werkzeug和pure
编写的WSGI应用程序来提供像css这样的静态文件python ..没有使用框架..
这是我的服务器..
from gevent import pywsgi
from Index import application
import os
application = SharedDataMiddleware(application, {
'/hello/template/': os.path.join(os.getcwd(), 'template')
})
print 'Serving on https://127.0.0.1:4000'
server = pywsgi.WSGIServer(('0.0.0.0', 4000), application,spawn=10000)
# to start the server asynchronously, call server.start()
# we use blocking serve_forever() here because we have no other jobs
server.serve_forever()
模板是css和图像等静态文件的路径。但这只是为应用程序而不是静态文件服务。是否有一个功能,在gevent中提供静态文件..?我没有发现文档有用。