为Tornado配置Nginx反向代理

简介:

Tornado的确很给力,知乎、Facebook一直在用。不过Tornado也有自己的局限性,比如它就没有实现完整的HTTP协议,甚至一些REST方法都不支持。不过这也难为它了,本来就是一个Web Framework顺便兼职干一点Web Server的事情而已,有就不错了。好在Tornado现在有了好伙伴Nginx,像HTTPS,负载均衡,静态文件这种破事都可以交给Nginx去处理了。

下载

从源代码编译安装Nginx需要处理一些依赖
Nginx官网
PCRE官网
ZLib官网
下载好之后解压至同一根目录下。

编译

 
  1. $ ./configure
  2. --sbin-path=/usr/local/nginx/nginx
  3. --conf-path=/usr/local/nginx/nginx.conf
  4. --pid-path=/usr/local/nginx/nginx.pid
  5. --with-http_ssl_module
  6. --with-pcre=../pcre-8.38
  7. --with-zlib=../zlib-1.2.8
  8. --with-openssl=../openssl-1.0.2g
  9. #上面只是为了好看....
  10. $ ./configure --sbin-path=/usr/local/nginx/nginx --conf-path=/usr/local/nginx/nginx.conf --pid-path=/usr/local/nginx/nginx.pid --with-http_ssl_module --with-pcre=../pcre-8.38 --with-zlib=../zlib-1.2.8 --with-openssl=../openssl-1.0.2g
  11. $ make -j8 && sudo make install

需要注意的是,Mac下和Linux下默认生成的目录是不一样的。
nginx运行一般要求root权限。
nginx命令行参数相当简单,因为功夫全在配置文件里了……。

 
  1. #启动Nginx实例
  2. $ nginx
  3. #使用指定的配置文件启动nginx
  4. $ nginx -c <conf_file>
  5. #向Nginx发出信号
  6. $ nginx -s [stop| quit| reopen| reload]

Mac下的Nginx配置

 
  1. user nobody nobody;
  2. worker_processes 1;
  3. error_log /var/log/nginx/error.log;
  4. pid /var/run/nginx.pid;
  5. events {
  6. worker_connections 1024;
  7. use kqueue;
  8. }
  9. http {
  10. # Enumerate all the Tornado servers here
  11. upstream frontends {
  12. server 127.0.0.1:8888;
  13. }
  14. include /usr/local/nginx/conf/mime.types;
  15. default_type application/octet-stream;
  16. access_log /var/log/nginx/access.log;
  17. keepalive_timeout 65;
  18. proxy_read_timeout 200;
  19. sendfile on;
  20. tcp_nopush on;
  21. tcp_nodelay on;
  22. gzip on;
  23. gzip_min_length 1000;
  24. gzip_proxied any;
  25. # Only retry if there was a communication error, not a timeout
  26. # on the Tornado server (to avoid propagating "queries of death"
  27. # to all frontends)
  28. proxy_next_upstream error;
  29. server {
  30. listen 80;
  31. # Allow file uploads
  32. client_max_body_size 50M;
  33. location ^~ /static/ {
  34. root /Volumes/Data/vserver;
  35. if ($query_string) {
  36. expires max;
  37. }
  38. }
  39. location ^~ /upload/ {
  40. root /Volumes/Data/vserver;
  41. if ($query_string) {
  42. expires max;
  43. }
  44. }
  45. location = /favicon.ico {
  46. access_log off;
  47. rewrite (.*) /static/other/favicon.ico;
  48. }
  49. location = /robots.txt {
  50. rewrite (.*) /static/other/robots.txt;
  51. }
  52. # Ali heartbeat dectection
  53. location = /status.taobao {
  54. access_log off;
  55. rewrite (.*) /static/other/status.taobao;
  56. }
  57. location / {
  58. proxy_pass_header Server;
  59. proxy_set_header Host $http_host;
  60. proxy_redirect off;
  61. proxy_set_header X-Real-IP $remote_addr;
  62. proxy_set_header X-Scheme $scheme;
  63. proxy_pass http://frontends;
  64. }
  65. }
  66. }

Linux下Nginx的配置

 
  1. # user nobody nobody;
  2. worker_processes 1;
  3. #error_log /var/log/nginx/error.log;
  4. #pid /var/run/nginx.pid;
  5. events {
  6. worker_connections 1024;
  7. }
  8. http {
  9. # Enumerate all the Tornado servers here
  10. upstream frontends {
  11. server 127.0.0.1:8888;
  12. }
  13. include /usr/local/nginx/mime.types;
  14. default_type application/octet-stream;
  15. #access_log /var/log/nginx/access.log;
  16. keepalive_timeout 65;
  17. proxy_read_timeout 200;
  18. sendfile on;
  19. tcp_nopush on;
  20. tcp_nodelay on;
  21. gzip on;
  22. gzip_min_length 1000;
  23. gzip_proxied any;
  24. # Only retry if there was a communication error, not a timeout
  25. # on the Tornado server (to avoid propagating "queries of death"
  26. # to all frontends)
  27. proxy_next_upstream error;
  28. server {
  29. listen 80;
  30. # Allow file uploads
  31. client_max_body_size 50M;
  32. location ^~ /static/ {
  33. root /home/vonng/vserver;
  34. if ($query_string) {
  35. expires max;
  36. }
  37. }
  38. location ^~ /upload/ {
  39. root /home/vonng/vserver;
  40. if ($query_string) {
  41. expires max;
  42. }
  43. }
  44. location = /favicon.ico {
  45. access_log off;
  46. rewrite (.*) /static/other/favicon.ico;
  47. }
  48. location = /robots.txt {
  49. rewrite (.*) /static/other/robots.txt;
  50. }
  51. # Ali heartbeat dectection
  52. location = /status.taobao {
  53. access_log off;
  54. rewrite (.*) /static/other/status.taobao;
  55. }
  56. location / {
  57. proxy_pass_header Server;
  58. proxy_set_header Host $http_host;
  59. proxy_redirect off;
  60. proxy_set_header X-Real-IP $remote_addr;
  61. proxy_set_header X-Scheme $scheme;
  62. proxy_pass http://frontends;
  63. }
  64. }
  65. }
目录
相关文章
|
24天前
|
应用服务中间件 BI nginx
Nginx的location配置详解
【10月更文挑战第16天】Nginx的location配置详解
|
1月前
|
缓存 负载均衡 安全
Nginx常用基本配置总结:从入门到实战的全方位指南
Nginx常用基本配置总结:从入门到实战的全方位指南
253 0
|
4天前
|
存储 负载均衡 中间件
Nginx反向代理配置详解,图文全面总结,建议收藏
Nginx 是大型架构必备中间件,也是大厂喜欢考察的内容,必知必会。本篇全面详解 Nginx 反向代理及配置,建议收藏。
Nginx反向代理配置详解,图文全面总结,建议收藏
|
16天前
|
应用服务中间件 API nginx
nginx配置反向代理404问题
【10月更文挑战第18天】本文介绍了使用Nginx进行反向代理的配置方法,解决了404错误、跨域问题和302重定向问题。关键配置包括代理路径、请求头设置、跨域头添加以及端口转发设置。通过调整`proxy_set_header`和添加必要的HTTP头,实现了稳定的服务代理和跨域访问。
nginx配置反向代理404问题
|
11天前
|
应用服务中间件 网络安全 PHP
八个免费开源 Nginx 管理系统,轻松管理 Nginx 站点配置
Nginx 是一个高效的 HTTP 服务器和反向代理,擅长处理静态资源、负载均衡和网关代理等任务。其配置主要通过 `nginx.conf` 文件完成,但复杂设置可能导致错误。本文介绍了几个开源的 Nginx 可视化配置系统,如 Nginx UI、VeryNginx、OpenPanel、Ajenti、Schenkd nginx-ui、EasyEngine、CapRover 和 NGINX Agent,帮助简化和安全地管理 Nginx 实例。
|
21天前
|
缓存 负载均衡 应用服务中间件
Nginx配置
【10月更文挑战第22天】在实际配置 Nginx 时,需要根据具体的需求和环境进行调整和优化。同时,还需要注意配置文件的语法正确性和安全性。
37 7
|
30天前
|
前端开发 JavaScript 应用服务中间件
终极 Nginx 配置指南
本文介绍了Nginx的基本配置及其优化方法。首先,通过删除注释简化了Nginx的默认配置文件,使其更易于理解。接着,文章将Nginx配置文件分为全局块、events块和http块三部分进行详细解释。此外,还提供了如何快速上线网站、解决前端history模式404问题、配置反向代理、开启gzip压缩、设置维护页面、在同一IP上部署多个网站以及实现动静分离的具体配置示例。最后,附上了Nginx的基础命令,包括安装、启动、重启和关闭等操作。
|
1月前
|
缓存 前端开发 JavaScript
一、nginx配置
一、nginx配置
152 1
|
1月前
|
JavaScript 前端开发 应用服务中间件
vue前端开发中,通过vue.config.js配置和nginx配置,实现多个入口文件的实现方法
vue前端开发中,通过vue.config.js配置和nginx配置,实现多个入口文件的实现方法
138 0
|
1月前
|
应用服务中间件 Linux nginx
Jetson 环境安装(四):jetson nano配置ffmpeg和nginx(亲测)之编译错误汇总
这篇文章是关于在Jetson Nano上配置FFmpeg和Nginx时遇到的编译错误及其解决方案的汇总。
87 4