Django、Apache2 和 Nginx:加载时间长
Posted
技术标签:
【中文标题】Django、Apache2 和 Nginx:加载时间长【英文标题】:Django, Apache2 and Nginx : Long loading time 【发布时间】:2017-06-08 14:12:08 【问题描述】:我使用 Django 作为我网站的技术。假设我使用的域名是example.com。
我使用 Apache2 作为我的主要 Web 服务器并使用 Nginx 来提供静态文件。
我首先安装了 Apache 并对其进行了测试。它运行良好(没有 css 和其他静态文件,只有 html)。
然后我安装了 nginx(我今天之前从未使用过它),这就是我遇到问题的地方。事实上,当我想访问我的网站时,我得到的 html 和以前一样好。但是加载继续,静态文件没有恢复。 我在 Mozilla 终端中没有看到任何错误。
这里是“站点可用”配置:
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin contact@example.com
DocumentRoot /var/www/my_site
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog $APACHE_LOG_DIR/error.log
CustomLog $APACHE_LOG_DIR/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
apache.conf:
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>
#<Directory /srv/>
# Options Indexes FollowSymLinks
# AllowOverride None
# Require all granted
#</Directory>
# Configuration for Django application
WSGIScriptAlias / /var/www/my_site/site/wsgi.py
WSGIPythonPath /var/www/my_site
<Directory var/www/my_site/my_site>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives. See also the AllowOverride
# directive.
#
AccessFileName .htaccess
#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<FilesMatch "^\.ht">
Require all denied
</FilesMatch>
# FQDN
ServerName example.com
我的 Nginx 配置:
server
listen 8000;
server_name localhost;
access_log /var/log/nginx/aa8000.access.log;
error_log /var/log/nginx/aa8000.error.log;
location /
index index.html index.htm;
location ^/static/
autoindex on;
root /var/www/my_site/allstatic/;
并完成我对静态文件的 Django 设置:
STATIC_URL = 'http://example.com:8000/static/'
STATICFILES_DIRS = [
os.path.join(BASE_DIR, "static"),
'/var/www/my_site/static/',
]
STATIC_ROOT = '/var/www/my_site/allstatic'
Nginx 错误日志甚至访问日志中都没有。
编辑:最后我只使用 apache 并且它可以工作。 这是我在apache conf中添加的:
Alias /favicon.ico /var/www/my_site/allstatic/favicon/favicon.ico
Alias /media/ /var/www/my_site/media/
Alias /static/ /var/www/my_site/allstatic/
<Directory /var/www/my_site/allstatic>
Require all granted
</Directory>
<Directory /var/www/my_site/media>
Require all granted
</Directory>
【问题讨论】:
我不明白为什么? nginx 和 apache 的创建目的相同。只使用一个。我推荐使用 nginx 来自官方 Django 文档:“Django 本身并不提供文件;它会将这项工作留给您选择的任何 Web 服务器。我们建议使用单独的 Web 服务器——即不运行 Django 的服务器——为媒体提供服务。这里有一些不错的选择: Nginx Apache 的精简版 但是,如果您别无选择,只能在与 Django 相同的 Apache VirtualHost 上提供媒体文件,您可以将 Apache 设置为以静态方式提供某些 URL媒体,以及其他使用 Django 的 mod_wsgi 接口的人。” 是的,这基本上就是我所说的。使用 Nginx 作为高性能 HTTP 服务器和反向代理,使用 uwsgi 或 gunicorn 作为 Python WSGI HTTP Server 【参考方案1】:我建议您将静态(如果需要,还可以添加媒体)部分添加到您的 apache 文件中,例如 apache.conf 中 https://docs.djangoproject.com/en/1.10/howto/deployment/wsgi/modwsgi/#serving-files 的示例
您是否托管多个站点?如果没有,请不要使用可用的站点;只需关闭虚拟主机,不要在启用站点的目录中启用任何内容。
【讨论】:
以上是关于Django、Apache2 和 Nginx:加载时间长的主要内容,如果未能解决你的问题,请参考以下文章
Django - Apache2 - Postgresql:_psycopg 出错
Django wsgi Apache2:'AH01630:服务器配置拒绝客户端'