-
python爬虫之Django Mezzanine uwsgi nginx 配置(2)
本站最新发布 Python从入门到精通|Python基础教程
试听地址 https://www.xin3721.com/eschool/pythonxin3721/
试听地址 https://www.xin3721.com/eschool/pythonxin3721/
至于部署方式可以采用,uWSGI,http://projects.unbit.it/downloads/。
1
2
3
4
|
tar zxvf uwsgi-latest. tar .gz cd uwsgi-1.2.6 make cp uwsgi /usr/sbin/uwsgi |
安装完uWSGI。
在你的工程目录下新建文件 django_wsgi.py
添加如下内容:
1
2
3
4
5
6
7
8
|
#!/usr/bin/env python # coding: utf-8 import os,sys if not os.path.dirname(__file__) in sys.path[: 1 ]: sys.path.insert( 0 , os.path.dirname(__file__)) os.environ[ 'DJANGO_SETTINGS_MODULE' ] = 'settings' from django.core.handlers.wsgi import WSGIHandler application = WSGIHandler() |
新建文件django.xml
添加如下内容,注意修改为自己的路径:
1
2
3
4
5
6
7
8
|
<uwsgi> <socket>127.0.0.1:8000< /socket > <master> true < /master > <chdir> /home/daniel/myblog < /chdir > <pythonpath>..< /pythonpath > <wsgi- file >django_wsgi.py< /wsgi-file > < enable -threads> true < /enable-threads > < /uwsgi > |
最后运行: wsgi -x wsgi.xml
这是 配置好了,在浏览器输入: http://localhost:8080/
是不是能够浏览你的站点了。
具体配置可参见我的工程里的相关配置
/articlelist/uploads/allimg/200216/202Q15J0-0.jpg文章转自: http://blog.csdn.net/daniel_ustc/article/details/8855303
栏目列表
最新更新
如何使用OS模块中的stat方法
Python os 模块
seek() 方法
python打开文件实例1
Python写入文件
什么是流?
文件操作如何进制逐行读取
Python相对路径
with创建临时运行环境
Python文件操作
.Net Standard(.Net Core)实现获取配置信息
Linux PXE + Kickstart 自动装机
Shell 编程 基础
Shell 编程 条件语句
CentOS8-网卡配置及详解
Linux中LVM逻辑卷管理
1.数码相框-相框框架分析(1)
Ubuntu armhf 版本国内源
Linux中raid磁盘阵列
搭建简易网站
access教程之Access简介
mysql 安装了最新版本8.x版本后的报错:
Mysql空间数据&空间索引(spatial)
如何远程连接SQL Server数据库的图文教程
复制SqlServer数据库的方法
搜索sql语句
sql中返回参数的值
sql中生成查询的模糊匹配字符串
数据定义功能
数据操作功能