이것은 첫 번째 웹 응용 프로그램 배포이며 모든 종류의 문제가 발생합니다.
현재 Django 앱의 nginx + gunicorn 구현을 시도하고 있지만 대부분이 질문은 nginx 구성과 관련이 있습니다. 일부 상황에서-nginx는 gunicorn 로컬 서버에 대한 연결 및 프록시를 수신합니다.
nginx 구성에서 제공해야한다고 말하는 곳은 server_name
무엇입니까? 네트워크의 외부 IP (정적)와 수신 할 포트 번호를 통해 어떤 종류의 도메인 이름도 사용할 계획이 없습니다.
내가 원하는 것은 내가 사이트에 접근 할 수있는 것과 같은 것에 접근 할 때 http://xxx.xxx.xxx.xxx:9050
이다.
다음은 참조 용으로 구성 할 샘플 코드입니다.
server {
listen 80;
server_name WHAT TO PUT HERE?;
root /path/to/test/hello;
location /media/ {
# if asset versioning is used
if ($query_string) {
expires max;
}
}
location /admin/media/ {
# this changes depending on your python version
root /path/to/test/lib/python2.6/site-packages/django/contrib;
}
location / {
proxy_pass_header Server;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Scheme $scheme;
proxy_connect_timeout 10;
proxy_read_timeout 10;
proxy_pass http://localhost:8000/;
}
# what to serve if upstream is not available or crashes
error_page 500 502 503 504 /media/50x.html;
}