Nginx反向代理和多站点配置实现及问题解决

Nginx反向代理和多站点配置实现及问题解决_第1张图片

Nginx是一款轻量级的Web 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,并在一个BSD-like 协议下发行。

Nginx 是一个很强大的高性能 Web和 反向代理服务器,它具有很多非常优越的特性:
在高连接并发的情况下,Nginx是 Apache服务器不错的替代品:Nginx在美国是做虚拟主机生意的老板们经常选择的软件平台之一。能够支持高达 50,000 个并发连接数的响应,感谢Nginx为我们选择了 epoll and kqueue作为开发模型。

Nginx作为负载均衡服务器:Nginx 既可以在内部直接支持 Rails 和 PHP 程序对外进行服务,也可以支持作为 HTTP代理服务器对外进行服务。Nginx采用C进行编写,不论是系统资源开销还是CPU使用效率都比 Perlbal 要好很多。


-----------------------------Nginx反向代理的配置----------------------------

Nginx 作为 web 服务器一个重要的功能就是反向代理。其实我们在前面的一篇文章《Nginx多站点配置的一次实践》里,用的就是 Nginx 的反向代理,这里简单再提一下。

下面是配置 Nginx 作为 tornado 的反向代理的设置:

01 upstream tornado {
02     server 127.0.0.1:8888;
03 }
04   
05 server {
06     listen   80;
07     root /root/nmapp2_venv;
08     index index.py index.html;
09   
10     server_name server;
11   
12     location / {
13         #if (!-e $request_filename) {
14         #    rewrite ^/(.*)$ /index.py/$1 last;
15         #}
16     }
17   
18     location ~ /index\.py {
19         proxy_pass_header Server;
20         proxy_set_header Host $http_host;
21         proxy_set_header X-Real-IP $remote_addr;
22         proxy_set_header X-Scheme $scheme;
23         proxy_pass http://tornado;
24     }
25 }

Nginx 反向代理的指令不需要新增额外的模块,默认自带 proxy_pass 指令,只需要修改配置文件就可以实现反向代理。

再举一个例子吧。比如要配置后端跑 apache 服务的 ip 和端口,也就是说,我们的目标是实现通过 http://ip:port 能访问到你的网站。

只要新建一个 vhost.conf,加入如下内容(记得修改 ip 和域名为你的 ip 和域名)。修改nginx.conf,添加 include quancha.conf 到http{}段, reload nginx就可以了。

Nginx 反向代理模板:

view source print ?
01 ## Basic reverse proxy server ##
02 upstream apachephp  {
03     server ip:8080; #Apache
04 }
05   
06 ## Start www.nowamagic.net ##
07 server {
08     listen 80;
09     server_name  www.nowamagic.net;
10   
11     access_log  logs/quancha.access.log  main;
12     error_log  logs/quancha.error.log;
13     root   html;
14     index  index.html index.htm index.php;
15   
16     ## send request back to apache ##
17     location / {
18         proxy_pass  http://apachephp;
19   
20         #Proxy Settings
21         proxy_redirect     off;
22         proxy_set_header   Host             $host;
23         proxy_set_header   X-Real-IP        $remote_addr;
24         proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
25         proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
26         proxy_max_temp_file_size 0;
27         proxy_connect_timeout      90;
28         proxy_send_timeout         90;
29         proxy_read_timeout         90;
30         proxy_buffer_size          4k;
31         proxy_buffers              4 32k;
32         proxy_busy_buffers_size    64k;
33         proxy_temp_file_write_size 64k;
34    }
35 }

这就完成了 Nginx 反向代理配置。

-------------------------- Nginx多站点配置-------------------------

在一台 VPS 上,我们有时候需要同时跑几个 virtualenv。比如 virtualenv app1 跑的是 Django 的一个应用,而 virtualenv app2 跑的是 Tornado。那么如何配置 Nginx,让它同时支持这两个 virtualenv 的运行呢?

首先是 Nginx 的主配置,位于 etc/nginx/ngnix.conf,让它保持默认就行:

01 user  nginx;
02 worker_processes  1;
03  
04 error_log  /var/log/nginx/error.log warn;
05 pid        /var/run/nginx.pid;
06  
07  
08 events {
09     worker_connections  1024;
10 }
11  
12  
13 http {
14     include       /etc/nginx/mime.types;
15     default_type  application/octet-stream;
16  
17     log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
18                       '$status $body_bytes_sent "$http_referer" '
19                       '"$http_user_agent" "$http_x_forwarded_for"';
20  
21     access_log  /var/log/nginx/access.log  main;
22  
23     sendfile        on;
24     #tcp_nopush     on;
25  
26     keepalive_timeout  65;
27  
28     #gzip  on;
29  
30     server {
31         listen       80;
32         server_name  112.124.7.216;
33         #server_name localhost;
34         #if ($host != 'www.nowamagic.net' ) {
35         #    rewrite ^/(.*)$ http://www.nowamagic.net/$1 permanent;
36         #}
37  
38         access_log /home/nowamagic/logs/access.log;
39         error_log /home/nowamagic/logs/error.log;
40  
41         #root         /root/nowamagic_venv/nowamagic_pj;
42         location / {
43             uwsgi_pass 127.0.0.1:8077;
44             #include uwsgi_params;
45             include /etc/nginx/uwsgi_params;
46             #uwsgi_pass 127.0.0.1:8077;
47             #uwsgi_param UWSGI_SCRIPT index;
48             #uwsgi_param UWSGI_PYHOME $document_root;
49             #uwsgi_param UWSGI_CHDIR  $document_root;
50        }
51  
52        location ~ \.php$ { 
53            #root          html; 
54            root           /var/www/html;
55            fastcgi_pass   127.0.0.1:9000; 
56            fastcgi_index  index.php; 
57            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name; 
58            include        fastcgi_params; 
59        }
60  
61        access_log off;
62     }
63  
64  
65     include /etc/nginx/conf.d/*.conf;
66 }

注意到这一句,include /etc/nginx/conf.d/*.conf; 它会加载 conf.d 文件夹下的所有配置文件。那么接下来的事情就简单了,我们设计两个 .conf ,一个是 django 的配置,一个是 tornado 的配置。

1. app1_django.conf

01 server {
02     listen       80;
03     server_name  112.124.7.216;
04     #server_name localhost;
05     #if ($host != 'www.imofa.net' ) {
06     #    rewrite ^/(.*)$ http://www.imofa.net/$1 permanent;
07     #}
08  
09     access_log /home/nowamagic/logs/access.log;
10     error_log /home/nowamagic/logs/error.log;
11  
12     #root         /root/nowamagic_venv/nowamagic_pj;
13     location / {
14         uwsgi_pass 127.0.0.1:8077;
15         #include uwsgi_params;
16         include /etc/nginx/uwsgi_params;
17         #uwsgi_pass 127.0.0.1:8077;
18         #uwsgi_param UWSGI_SCRIPT index;
19         #uwsgi_param UWSGI_PYHOME $document_root;
20         #uwsgi_param UWSGI_CHDIR  $document_root;
21    }
22  
23    location ~ \.php$ { 
24        #root          html; 
25        root           /var/www/html;
26        fastcgi_pass   127.0.0.1:9000; 
27        fastcgi_index  index.php; 
28        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name; 
29        include        fastcgi_params; 
30    }
31  
32    access_log off;
33 }

下面是 tornado 的配置:

2. app2_tornado.conf

view source print ?
01 upstream tornado {
02     server 127.0.0.1:8888;
03 }
04   
05 server {
06     listen   80;
07     root /root/nmapp2_venv;
08     index index.py index.html;
09   
10     server_name server;
11   
12     location / {
13         #if (!-e $request_filename) {
14         #    rewrite ^/(.*)$ /index.py/$1 last;
15         #}
16     }
17   
18     

你可能感兴趣的:(系统运维)