
nginx
格林-scorpio
做着自己喜欢的事。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
nginx允许跨域和websocket支持
路径 nginx/conf/conf.d/my_test.confserver { listen 443; server_name wlres.cssccloud.net; server_name_in_redirect off; ssl on; root html; index index.html index.htm; ssl_certificate cert/myte原创 2021-07-14 09:11:56 · 1056 阅读 · 0 评论 -
grpc 通过 nginx负载均衡
1、版本 1.18.02、编译安装: ./configure --prefix=/usr/local/nginx/ --with-http_ssl_module --with-http_v2_module 注释: 因为grpc是基于http2 所以安装的时候要加上这个模块 --with-http_ssl_module --with-http_v2_module make make install3、启动 /usr/...原创 2020-06-02 17:02:34 · 710 阅读 · 0 评论 -
nginx+django+fastcgi配置
安装环境介绍: python2.7.10 django1.7.9 linux CentOS release 6.5 (Final) 641、fastcgi插件的安装安装与配置 https://www.saddi.com/software/flup/dist/ 下载 flup-1.0.2.tar.gz tar flup-1.0.2.tar.g原创 2017-05-24 16:41:37 · 895 阅读 · 0 评论 -
nginx+uwsgi+django+supervisor
安装环境介绍: python2.7.10 django1.7.9 linux CentOS release 6.5 (Final) 641、uwsgi安装与配置 tar xvzf uwsgi-2.0.14.tar.gz cd uwsgi-2.0.14 python setup.py install uwsgi配置 参考 djang...原创 2017-05-24 16:45:58 · 1472 阅读 · 0 评论 -
nginx+django+gunicorn+gevent+supervisor
安装环境介绍: python2.7.10 django1.7.9 linux CentOS release 6.5 (Final) 64 假设我的项目位置为/var/www/myweb 服务器IP为192.168.0.1001、插件安装 gunicorn-19.7.1 uwsgi组件 gevent-1.2.1原创 2017-05-26 10:27:58 · 746 阅读 · 0 评论