Centos7 systemctl 添加 uwsgi(开机启动) uwsgi 配置 [uwsgi] # 监听端口 socket = 127.0.0.1:9090 #socket = 127.0.0.1:3031 # 运行状态 #stats = 127.0.0.1:9191 # 工作路径 chdir = /root/yzq/djang continue reading centos zhuoyuebiji 2021/4/26 1191
Django debug=False 时能找到静态文件的几种方式(静态文件找不到) runserver 模式(临时用) 启动命令:django-admin runserver --insecure --help: --insecure Allows serving static files even if DEBUG is False. continue reading django zhuoyuebiji 2020/3/1 1124
Django 修改代码后,uwsgi 自动重启 问题现象 nginx + uwsgi + django 部署的站点,如果修改了py 代码,需要重新启动 uwsgi 才会生效。 解决方法 如果有需要 Django 代码改动时立即生效,可以在启动 uwsgi 的 ini 的配置文件里加入参数 py-autoreload = 1&n continue reading django zhuoyuebiji 2019/8/21 3006
Centos7 + virtualenv + django + uwsgi + nginx 部署 Django 站点 安装环境 centos: 7.x python: 3.6.x django:1.11 virtualenv 和 virtualenvwrapper 安装 centos7 之 python3, git, nginx, continue reading django zhuoyuebiji 2019/7/24 1312
Nginx 同一 iP 多域名配置方法(多子配置文件,含 https) 一、Nginx 配置文件 路径:/usr/local/nginx/conf/nginx.conf 操作:在 http 模块增加(子配置文件的路径和名称):include vhost/*.conf; 另外需要注意一下 user 后面要改成 continue reading nginx zhuoyuebiji 2019/5/30 1324
Uwsgi 配置 python virtualenv 虚拟环境目录 ( ini 配置) uwsgi 文档 https://uwsgi-docs-zh.readthedocs.io/zh_CN/latest/Configuration.html(中文) https://uwsgi-docs.readthedocs.io/en/latest/Configuration.ht continue reading django zhuoyuebiji 2017/9/22 4711