非常简单的Django部署用于低流量内联网使用

时间:2013-06-27 14:30:42

标签: django

我正在设计一个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")

使用“不安全”这个词让我思考......这只是一个表现问题吗?我应该真的设置两台服务器,还是一台服务器就足够了?

1 个答案:

答案 0 :(得分:0)

我的建议是运行类似nginx的东西,然后使用uwsgi(或者我猜Gunicorn)为django网站提供服务。你只需要设置一次,然后你的应用程序将很好地扩展。设置nginx既快速又简单,并且有大量的教程。