您好,登錄后才能下訂單哦!
本篇內容主要講解“怎么用flask+uwsgi+nginx把項目部署到服務器上”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“怎么用flask+uwsgi+nginx把項目部署到服務器上”吧!
服務器部署一般是用nginx做負載均衡,用uwsgi轉發到相應的web項目中去
安裝 nginx(ubuntu和centos有區別)
sudo apt-get install nginx
安裝uwsgi
pip3 install uwsgi
#將數據庫遷移到服務器上
安裝服務器
sudo apt-get install mysql-server (ubuntu版)
#打開數據庫,創建一個數據庫
create database_shop
導入本地創建的數據庫文件
source (文件地址)
配置uwsgi.ini文件,這個文件跟uwsgi同行
[uwsgi]
#使用nginx連接時使用,Django程序所在服務器地址
;socket=127.0.0.1:8001
#直接做web服務器使用,Django程序所在服務器地址
http=0.0.0.0:8001
#項目目錄(manage.py所在目錄)
chdir=/home/ubuntu/apiwxcjsoft/apicjsoft
#項目中wsgi.py文件的目錄,相對于項目目錄(寫項目目錄chdir之后的目錄)
wsgi-file=apicjsoft/wsgi.py
callable = app #flask_manager 需要加上這句話
# 進程數
processes=4
# 線程數
threads=2
# uwsgi服務器的角色
master=True
# 存放進程編號的文件
pidfile=uwsgi.pid
# 日志文件,因為uwsgi可以脫離終端在后臺運行,日志看不見。我們以前的runserver是依賴終端的(會生成在與uwsgi.ini平級目錄中)
daemonize=uwsgi.log
# 指定依賴的虛擬環境
virtualenv=/home/ubuntu/apiwxcjsoft/apicjsoft/env
啟動uwsgi命令
uwsgi --ini uwsgi.ini
關閉uwsgi命令
uwsgi --stop uwsgi.pid 關閉
配置nginx
ubuntu下找到/etc/nginx/sites-available下的default文件
server {
listen 80; #監聽端口,一般為80
# listen [::]:80 default_server;
# SSL configuration
#
# listen 443 ssl default_server;
# listen [::]:443 ssl default_server;
#
# Note: You should disable gzip for SSL traffic.
# See: https://bugs.debian.org/773332
#
# Read up on ssl_ciphers to ensure a secure configuration.
# See: https://bugs.debian.org/765782
#
# Self signed certs generated by the ssl-cert package
# Don't use them in a production server!
#
# include snippets/snakeoil.conf;
root /var/www/html;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name _;
#配置轉發地址,
location / {
include /etc/nginx/uwsgi_params;
uwsgi_pass 127.0.0.1:8001;#寫在uwsgi.ini中得地址
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
# try_files $uri $uri/ =404;
}
修改完后重新啟動nginx
service nginx restart
停止命令
service nginx stop
啟動命令
service nginx start
到此,相信大家對“怎么用flask+uwsgi+nginx把項目部署到服務器上”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。