502 错误网关、Django、Nginx、Gunicorn、Postgresql、Virtualenv
502 Bad Gateway, Django, Nginx, Gunicorn, Postgresql, Virtualenv
我已经研究了一个星期了。我一直在尝试在数字海洋上部署一个小测试应用程序,并且我已经遵循了很多这样的教程:https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-django-with-postgres-nginx-and-gunicorn
我什至试过一键安装教程:
https://www.digitalocean.com/community/tutorials/how-to-use-the-django-one-click-install-image
昨晚我试了这个,我发现这是最新的一个:
http://franklevering.me/blog/how-deploy-your-django-app-postgresql-nginx-and-gunicorn
当我访问我的 IP 时:http://188.166.62.146 我看到欢迎使用 nginx!页。
当我去 http://188.166.62.146:8001 我得到一个 400 Bad Request.
我运行以下命令:
gunicorn --log-file=- blog.wsgi:application
[2015-02-20 07:02:55 +0000] [6089] [INFO] Starting gunicorn 19.2.1
[2015-02-20 07:02:55 +0000] [6089] [INFO] Listening at: http://127.0.0.1:8000 (6089)
[2015-02-20 07:02:55 +0000] [6089] [INFO] Using worker: sync
[2015-02-20 07:02:55 +0000] [6094] [INFO] Booting worker with pid: 6094
在 /var/log/nginx 中我重复了这个错误:
2015/02/20 03:07:27 [error] 4755#0: *9 connect() failed (111: Connection refused) while connecting to upstream, client: 95.128.91.3, server: 188.166.62.146, request: "GET /favicon.ico HTTP/1.1", u$$.1", upstream: "http://127.0.0.1:8001/favicon.ico", host: "188.166.62.146"
这是我的 settings.py 文件:
DEBUG = TEMPLATE_DEBUG = False
import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
ALLOWED_HOSTS = []
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'posts',
)
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
ROOT_URLCONF = 'blog.urls'
WSGI_APPLICATION = 'blog.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'blog',
'USER': 'myuser',
'PASSWORD': 'mypassword',
}
}
LANGUAGE_CODE = 'en-us'
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'Asia/Nicosia'
USE_I18N = True
USE_L10N = True
USE_TZ = True
STATIC_ROOT = '/opt/blogger/blog/static/'
STATIC_URL = '/static/'
TEMPLATE_DIRS = [os.path.join(BASE_DIR, 'templates')]
这是我在 etc/nginx/sites-available/blogger 中的配置文件:
server {
server_name project.com;
access_log off;
location /static/ {
alias /opt/blogger/blog/static/;
}
location / {
proxy_pass http://127.0.0.1:8001;
proxy_set_header X-Forwarded-Host $server_name;
proxy_set_header X-Real-IP $remote_addr;
add_header P3P 'CP="ALL DSP COR PSAa PSDa OUR NOR ONL UNI COM NAV"';
}
}
我使用当前命令绑定gunicorn:
blog.wsgi:application --bind 188.166.62.146:8001
/opt/blogger/blog# gunicorn blog.wsgi:application --bind 127.0.0.1:8001
[2015-02-20 13:02:37 +0000] [7922] [INFO] Starting gunicorn 19.2.1
[2015-02-20 13:02:37 +0000] [7922] [INFO] Listening at: http://127.0.0.1:8001 (7922)
[2015-02-20 13:02:37 +0000] [7922] [INFO] Using worker: sync
[2015-02-20 13:02:37 +0000] [7927] [INFO] Booting worker with pid: 7927
^Z
[1]+ Stopped gunicorn blog.wsgi:application --bind 127.0.0.1:8001
/opt/blogger/blog#bg
[1]+ gunicorn blog.wsgi:application --bind 127.0.0.1:8001
首先,将您的 nginx 服务器名称更改为您的 IP 地址。
然后绑定gunicorn到127.0.0.1:8001.
交易是,据我所知,nginx 会将所有来自服务器名称的传入请求转发到 proxy_pass 变量。然后让 gunicorn 回答你指向的地方的请求 proxy_pass.
我已经研究了一个星期了。我一直在尝试在数字海洋上部署一个小测试应用程序,并且我已经遵循了很多这样的教程:https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-django-with-postgres-nginx-and-gunicorn
我什至试过一键安装教程: https://www.digitalocean.com/community/tutorials/how-to-use-the-django-one-click-install-image
昨晚我试了这个,我发现这是最新的一个: http://franklevering.me/blog/how-deploy-your-django-app-postgresql-nginx-and-gunicorn
当我访问我的 IP 时:http://188.166.62.146 我看到欢迎使用 nginx!页。 当我去 http://188.166.62.146:8001 我得到一个 400 Bad Request.
我运行以下命令:
gunicorn --log-file=- blog.wsgi:application
[2015-02-20 07:02:55 +0000] [6089] [INFO] Starting gunicorn 19.2.1
[2015-02-20 07:02:55 +0000] [6089] [INFO] Listening at: http://127.0.0.1:8000 (6089)
[2015-02-20 07:02:55 +0000] [6089] [INFO] Using worker: sync
[2015-02-20 07:02:55 +0000] [6094] [INFO] Booting worker with pid: 6094
在 /var/log/nginx 中我重复了这个错误:
2015/02/20 03:07:27 [error] 4755#0: *9 connect() failed (111: Connection refused) while connecting to upstream, client: 95.128.91.3, server: 188.166.62.146, request: "GET /favicon.ico HTTP/1.1", u$$.1", upstream: "http://127.0.0.1:8001/favicon.ico", host: "188.166.62.146"
这是我的 settings.py 文件:
DEBUG = TEMPLATE_DEBUG = False
import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
ALLOWED_HOSTS = []
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'posts',
)
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
ROOT_URLCONF = 'blog.urls'
WSGI_APPLICATION = 'blog.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'blog',
'USER': 'myuser',
'PASSWORD': 'mypassword',
}
}
LANGUAGE_CODE = 'en-us'
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'Asia/Nicosia'
USE_I18N = True
USE_L10N = True
USE_TZ = True
STATIC_ROOT = '/opt/blogger/blog/static/'
STATIC_URL = '/static/'
TEMPLATE_DIRS = [os.path.join(BASE_DIR, 'templates')]
这是我在 etc/nginx/sites-available/blogger 中的配置文件:
server {
server_name project.com;
access_log off;
location /static/ {
alias /opt/blogger/blog/static/;
}
location / {
proxy_pass http://127.0.0.1:8001;
proxy_set_header X-Forwarded-Host $server_name;
proxy_set_header X-Real-IP $remote_addr;
add_header P3P 'CP="ALL DSP COR PSAa PSDa OUR NOR ONL UNI COM NAV"';
}
}
我使用当前命令绑定gunicorn:
blog.wsgi:application --bind 188.166.62.146:8001
/opt/blogger/blog# gunicorn blog.wsgi:application --bind 127.0.0.1:8001
[2015-02-20 13:02:37 +0000] [7922] [INFO] Starting gunicorn 19.2.1
[2015-02-20 13:02:37 +0000] [7922] [INFO] Listening at: http://127.0.0.1:8001 (7922)
[2015-02-20 13:02:37 +0000] [7922] [INFO] Using worker: sync
[2015-02-20 13:02:37 +0000] [7927] [INFO] Booting worker with pid: 7927
^Z
[1]+ Stopped gunicorn blog.wsgi:application --bind 127.0.0.1:8001
/opt/blogger/blog#bg
[1]+ gunicorn blog.wsgi:application --bind 127.0.0.1:8001
首先,将您的 nginx 服务器名称更改为您的 IP 地址。
然后绑定gunicorn到127.0.0.1:8001.
交易是,据我所知,nginx 会将所有来自服务器名称的传入请求转发到 proxy_pass 变量。然后让 gunicorn 回答你指向的地方的请求 proxy_pass.