nginx gunicorn flask 배치

671 단어
포 인 트 는 service 의 작성 입 니 다. 다음 과 같 습 니 다.
#!/bin/bash

start() {
    echo -n "Starting flaskr
" . /root/python_envs/flaskr/bin/activate cd /usr/share/nginx/html/flaskr gunicorn -w 4 -b 127.0.0.1:8080 flaskr:app > /dev/null & echo -n "Start OK!" } stop(){ echo -n "Shutting stop flaskr
" killall gunicorn echo -n "flaskr STOP" } case "$1" in start) start ;; stop) stop ;; restart) stop && start ;; esac exit

그리고 python 3 는 SQLite 3 를 지원 하지 않 는 문제 입 니 다.
인터넷 으로 검색 하면 됩 니 다.
1. 해당 sqlite 3 라 이브 러 리 를 설치 합 니 다.2. 컴 파일 설치 python 3

좋은 웹페이지 즐겨찾기