ubuntu-nginx&Supervisor
설치: sudo apt - get install nginx 프로필: sudo vim / etc / nginx / sites - available / default
# nginx -c /etc/nginx/nginx.conf
nginx
# nginx -s stop
# nginx -s reload
# pkill -HUP nginx
# nginx -s reopen
# pkill -USR1 nginx
nginx RPM /etc/init.d/nginx , :
# service nginx {start|stop|status|restart|reload|configtest|}
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
# HTTPS,
# https://letsencrypt.org SSL
#listen 443 ssl;
#ssl_certificate www.example.com.crt;
#ssl_certificate_key www.example.com.key;
#ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
#ssl_ciphers HIGH:!aNULL:!MD5;
# HTTP HTTPS
# rewrite ^(.*)$ https://$host$1 permanent;
# ,
root /usr/share/nginx/html;
# index.php
index index.php index.html index.htm;
# ssl.mcxiaoke.com
server_name ssl.mcxiaoke.com; #
location / {
try_files $uri $uri/ =404;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# php-fpm
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
Supervisor
설치: sudo apt - get install supervisor 슈퍼 바 이 저 설정 파일 만 들 기
[program:myapp]
command = gunicorn myapp:app -b localhost:8000
directory = /home/mcxiaoke/myapp
user = mcxiaoke
작업 읽 기 및 실행
sudo pkill gunicorn
sudo supervisorctl reread
sudo supervisorctl update
sudo supervisorctl start myapp
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.