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で静的ファイルを提供する機能はありますか..?ドキュメントが役に立たなかった。