Mac 下初探nginx

首先,nginx是什么?

 Nginx ("engine x") 是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP服务器。

然后,nginx的作用?

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

2�代码
Nginx代码完全用C语言从头写成,已经移植到许多体系结构和操作系统包括:Linux、FreeBSD、Solaris、Mac OS X、AIX以及Microsoft Windows。Nginx有自己的函数库,并且除了zlib、PCRE和OpenSSL之外,标准模块只使用系统C库函数。而且,如果不需要或者考虑到潜在的授权冲突,可以不使用这些第三方库。

3 �代理服务器
作为邮件代理服务器:Nginx 同时也是一个非常优秀的邮件代理服务器最早开发这个产品的目的之一也是作为邮件代理服务器),Last.fm 描述了成功并且美妙的使用经验。

Mac下如何使用nginx?

1.打开终端执行

  brew install nginx

安装好后的主要路径在:

  /usr/local/etc/nginx/nginx.conf (配置文件路径)
  /usr/local/var/www (服务器默认路径)
  /usr/local/Cellar/nginx/1.6.2  (貌似是安装路径)

如果没有安装brew,请到brew.sh查看方法。

2.启动nginx

  sudo nginx

测试是否启动成功:localhost:8080

3.使用nginx
1)简单的反向代理

   server_name  www.lewis.com;

在host中添加一行 127.0.0.1 www.lewis.com
2)负载均衡配置

#设定负载均衡的服务器列表
    upstream load_balance_server {
        #weigth参数表示权值,权值越高被分配到的几率越大
        server 192.168.1.11:80   weight=5;
        server 192.168.1.12:80   weight=1;
        server 192.168.1.13:80   weight=6;
    }

3)多个APP共存

http {
    #此处省略一些基本配置
    
    upstream product_server{
        server www.helloworld.com:8081;
    }
    
    upstream admin_server{
        server www.helloworld.com:8082;
    }
    
    upstream finance_server{
        server www.helloworld.com:8083;
    }

    server {
        #此处省略一些基本配置
        #默认指向product的server
        location / {
            proxy_pass http://product_server;
        }

        location /product/{
            proxy_pass http://product_server;
        }

        location /admin/ {
            proxy_pass http://admin_server;
        }
        
        location /finance/ {
            proxy_pass http://finance_server;
        }
    }
}

实践

新建一个index.html在nginx的html目录,通过localhost:8080可以访问到,然后在本地启一个localhost:8089的json数据,确保访问,在index.html里使用$.ajax访问localhost:8089,提示跨域。
修改nginx.conf:
添加一行:

  location /users {
  rewrite ^.+users/?(.*)$ /$1 break;
  include uwsgi_params;
  proxy_pass http://localhost:8089/;
}

重启nginx,再次访问localhost:8080就可以看到json数据了。

nginx常用命令

  nginx                  启动nginx
  nginx -s stop       快速关闭Nginx,可能不保存相关信息,并迅速终止web服务。
  nginx -s quit       平稳关闭Nginx,保存相关信息,有安排的结束web服务。
  nginx -s reload     因改变了Nginx相关配置,需要重新加载配置而重载。
  nginx -s reopen     重新打开日志文件。
  nginx -c filename   为 Nginx 指定一个配置文件,来代替缺省的。
  nginx -t            不运行,而仅仅测试配置文件。nginx 将检查配置文件的语法的正确性,并尝试打开配置文件中所引用到的文件。
  nginx -v            显示 nginx 的版本。
  nginx -V            显示 nginx 的版本,编译器版本和配置参数。

注意:mac下加sudo.

你可能感兴趣的:(Mac 下初探nginx)