그래서 Django 앱에 uwsgi를 사용하여 Nginx를 설정하려고 합니다.
내 /etc/nginx/nginx.conf 파일은 다음과 같습니다.
# /etc/nginx/nginx.conf
user richard richard; ## Default: nobody
worker_processes 5; ## Default: 1
error_log /var/log/nginx/error.log;
pid /var/log/nginx/nginx.pid;
worker_rlimit_nofile 8192;
events {
worker_connections 4096; ## Default: 1024
}
http {
include /etc/nginx/mime.types;
include /etc/nginx/proxy.conf;
index index.html index.htm;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] $status '
'"$request" $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
server_names_hash_bucket_size 128; # this seems to be required for some vhosts
include /etc/nginx/conf.d/vhost.conf;
}
그리고 내 /etc/nginx/conf.d/vhost.conf:
# /etc/nginx/conf.d/vhost.conf
upstream django {
# connect to this socket
server unix:///tmp/uwsgi.sock;
}
server {
# the port your site will be served on
listen 80;
# the domain name it will serve for
server_name localhost;
charset utf-8;
client_max_body_size 2M;
location /media {
alias /usr/local/django-app/media;
}
location /static {
alias /usr/local/django-app/static;
}
# finally, send all non-media requests to the Django server.
location / {
uwsgi_pass django;
include /etc/nginx/uwsgi_params;
}
}
localhost에 가면 다음을 얻습니다.
Resolving localhost (localhost)... 127.0.0.1
Connecting to localhost (localhost)|127.0.0.1|:80... connected
HTTP request sent, awaiting response... 502 Bad Gateway
2013-12-22 03:08:56 ERROR 502: Bad Gateway
어떤 아이디어가 있나요?
답변1
Django 앱이 실행되고 있지 않습니다. 시작하십시오(그리고 소켓 경로가 올바른지 확인하십시오).