博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在Linux上部署Nginx,反向代理tornado的WebSite
阅读量:5219 次
发布时间:2019-06-14

本文共 968 字,大约阅读时间需要 3 分钟。

1.安装 Nginx

yum install -y nginx

2. 修改nginx配置文件

cd /etc/nginx/mv nginx.conf nginx.conf.swfmv nginx.conf.default nginx.confvi nginx.conf
upstream tornados{        server 127.0.0.1:8888;    }    proxy_next_upstream error;    server {        listen       80;        server_name  localhost;        #charset koi8-r;        #access_log  logs/host.access.log  main;        location / {            #root   html;            #index  index.html index.htm;            proxy_pass_header Server;            proxy_set_header Host $http_host;            proxy_redirect off;            proxy_set_header X-Real-IP $remote_addr;            proxy_pass http://tornados;       }

3.启动tornado

/root/anaconda3/envs/demo/bin/python  /root/python_codes/tornadodemo/main.py

4.启动Nginx

systemctl start nginx.servicesystemctl stop nginx.servicesystemctl restart nginx.servicesystemctl enable nginx.service

5.访问网址

http://190.39.90.3/test

enjoy :)...

转载于:https://www.cnblogs.com/want990/p/11535784.html

你可能感兴趣的文章
手机验证码执行流程
查看>>
python 基础 ----- 变量
查看>>
设计模式课程 设计模式精讲 2-2 UML类图讲解
查看>>
Silverlight 的菜单控件。(不是 Toolkit的)
查看>>
:hover 鼠标同时触发两个元素变化
查看>>
go语言学习十三 - 相等性
查看>>
Idea 提交代码到码云(提交到github也大同小异)
查看>>
c#连接excel2007未安装ISAM解决
查看>>
Mono 异步加载数据更新主线程
查看>>
初识lua
查看>>
我是插件狂人,jDuang,jValidator,jModal,jGallery
查看>>
张季跃 201771010139《面向对象程序设计(java)》第四周学习总结
查看>>
如何解除循环引用
查看>>
android中fragment的使用及与activity之间的通信
查看>>
字典【Tire 模板】
查看>>
jquery的contains方法
查看>>
python3--算法基础:二分查找/折半查找
查看>>
Perl IO:随机读写文件
查看>>
Perl IO:IO重定向
查看>>
转:基于用户投票的排名算法系列
查看>>