1、下载安装相关软件
centos环境下安装:
安装组件:
yum groupinstall "Development tools"
yum install zlib-devel bzip2-devel pcre-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel
安装python:
cd ~
wget https://pypi.python.org/packages/source/d/distribute/distribute-0.6.49.tar.gz
tar xf distribute-0.6.49.tar.gz
cd distribute-0.6.49
python2.7 setup.py install
easy_install --version
安装uwsgi
pip install uwsgi
uwsgi --version # 查看 uwsgi 版本
测试uwsgi 是否成功:
新建test.py 文件
def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
return "Hello World"
然后在终端运行:
uwsgi --http :8001 --wsgi-file test.py
在浏览器内输入:http://127.0.0.1:8001,查看是否有"Hello World"输出,若没有输出,请检查你的安装过程。
如果显示如下报错: (属于python的编码问题)
解决方法:
def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
a = "Hello World"
return a.encode("utf-8")
安装Django:
pip install django
测试 django 是否正常,运行:
django-admin.py startproject demosite
cd demosite
python2.7 manage.py runserver 0.0.0.0:8002
在浏览器内输入:http://127.0.0.1:8002,检查django是否运行正常
如果外网访问 显示host权限报错 在setting.py 里设置:
ALLOWED_HOSTS = ["*"]
安装Nginx: (去官网选需要的版本 http://nginx.org/download )
cd ~
wget http://nginx.org/download/nginx-1.23.4.tar.gz
tar xf nginx-1.23.4.tar.gz
cd nginx-1.23.4
./configure --prefix=/usr/local/nginx-1.23.4 \
--with-http_stub_status_module \
--with-http_gzip_static_module
make && make install
uwsgi配置:
[uwsgi]
socket = 127.0.0.1:9090
master = true //主进程
#vhost = true //多站模式 需要多站打开注释
#no-site = true //多站模式时不设置入口模块和文件 需要多站打开注释
workers = 2 //子进程数
reload-mercy = 10
vacuum = true //退出、重启时清理文件
max-requests = 1000
limit-as = 512
buffer-size = 30000
pidfile = /var/run/uwsgi9090.pid //pid文件,用于下面的脚本启动、停止该进程 添加之后会后台运行uwsgi
daemonize = /website/uwsgi9090.log //添加之后会后台运行uwsgi
Nginx配置:
找到nginx的安装目录(如:/usr/local/nginx/),打开conf/nginx.conf文件,修改server配置:
server {
listen 80;
server_name localhost;
location / {
include uwsgi_params;
uwsgi_pass 127.0.0.1:9090; //必须和uwsgi中的设置一致
uwsgi_param UWSGI_SCRIPT demosite.wsgi; //入口文件,即wsgi.py相对于项目根目录的位置,“.”相当于一层目录
uwsgi_param UWSGI_CHDIR /demosite; //项目根目录
index index.html index.htm;
client_max_body_size 35m;
}
}
启用uwsgi.ini 配置:
uwsgi --ini /etc/uwsgi9090.ini
启用Nginx:
/usr/local/nginx-1.23.4/sbin/nginx
如果显示 django的页面表示成功了
----报错----
如果显示uri报错:
解决办法:打开保存路径找到 uri 将True 改为False,然后重启服务
如果显示
Internal Server Error
1、检查配置的文件路径
2、检查下端口是否被占用
标签:web,http,Nginx,--,py,devel,nginx,django,uwsgi From: https://www.cnblogs.com/mlianga/p/17385922.html