我正在设计一个 Django 系统。流量会非常低(管理界面上的 1 个用户,小型数据库上可能每分钟 4 个请求),所以我并不担心性能。它将部署在许多服务器上,所以我想让它尽可能容易设置。
我最初的想法是使用 Gunicorn 服务器为所有内容(动态和静态)提供服务。
但是,标准建议是使用专门的 Web 服务器提供静态和媒体文件非常重要。事实上,Django 本身很难提供这些服务DEBUG = True
,例如django.contrib.staticfiles.views.serve
:
def serve(request, path, document_root=None, insecure=False, **kwargs):
"""
Serve static files below a given point in the directory structure or
from locations inferred from the staticfiles finders.
To use, put a URL pattern such as::
(r'^(?P<path>.*)$', 'django.contrib.staticfiles.views.serve')
in your URLconf.
It uses the django.views.static view to serve the found files.
"""
if not settings.DEBUG and not insecure:
raise ImproperlyConfigured("The staticfiles view can only be used in "
"debug mode or if the --insecure "
"option of 'runserver' is used")
使用“不安全”这个词让我想到……这只是性能问题吗?我真的应该设置两台服务器,还是一台就足够了?