flask + nginx + uwsgi 의 배치 수기

859 단어
uwsgi 는 동적 인 것 만 처리 할 수 있 을 것 같 으 니 정적 인 것 은 nginx 에 게 맡 기 는 것 이 좋 습 니 다.
먼저 nginx 를 설치 합 니 다.
그리고 nginx 설정:
vim /etc/nginx/nginx.conf
server {
    listen       127.9.114.1:8080;
    server_name  _;
    location / { try_files $uri @yourapplication; }
    location @yourapplication {
      include uwsgi_params;
      uwsgi_pass unix:/tmp/uwsgi.sock;
    }
}

그리고 uwsgi 시작:
uwsgi -s /tmp/uwsgi.sock -w flask_file_name:app --chmod-socket 666
혹은
uwsgi -s /tmp/uwsgi.sock --pp filepathto/application.py --module application --chmod-socket 666
virtual environment 를 사용 하고 이 옵션 을 추가 하면 됩 니 다.
-H /path/to/virtual/env 
그 중 -- chmod - socket 666 은 nginx 를 시작 할 때 permission deny 가 나타 나 지 않도록 보증 합 니 다.
그리고 nginx 를 시작 하면 됩 니 다.
접근:http://127.9.114.1:8080
welcome to nginx!

좋은 웹페이지 즐겨찾기