Nginx

Nginx

1.什么是Nginx

是一个高性能的HTTP和反向代理web服务器,同时也提供了IMAP/POP3/SMTP服务。Nginx是由伊戈尔·赛索耶夫为俄罗斯访问量第二的Rambler.ru站点(俄文:Рамблер)开发的,第一个公开版本0.1.0发布于2004年10月4日。

2.反向代理

  • 正向代理:在客户端(浏览器)配置代理服务器,通过代理服务器进行互联网访问。

  • 反向代理:因为客户端不需要任何配置就可以访问,我们只需要将请求发送到反向代理服务器,由反向代理服务器去选择目标服务器获取数据后,在返回给客户端,此时反向代理服务器和目标服务器对外就是一个服务器,暴露的是代理服务器地址,隐藏了真实服务器IP地址。

3.负载均衡

单个服务器解决不了,我们增加服务器的数量,然后将请求分发到各个服务器上,将原先请求集中单个服务器上的情况改为将请求分发到多个服务器上,将负载分发到不同的服务器,也就是我们所说的负载均衡。

4.动静分离

为了加快网站的解析速度,可以把动态页面和静态页面由不同的服务器来解析,加快解析速度,降低原来单个服务器的压力。

安装

  1. 使用远程连接liunx

  2. 本文本使用ubunt安装nginx

  3. 安装命令 apt-get install nginx安装nginx 安装nginx

    nginx -v 查看nginx版本

    service nginx start 启动nginx服务

  4. nginx文件安装完成之后的文件位置:

    • /usr/sbin/nginx:主程序

    • /etc/nginx:存放配置文件

    • /usr/share/nginx:存放静态文件

    • /var/log/nginx:存放日志

    • ps -ef I grep nginx 查看进程

    • kill -9 pid 关闭进程

防火墙设置参考地址

常用命令:

/usr/sbin/目录中:

使用./nginx启动nginx服务

使用./nginx s stop关闭nginx服务

使用ps -ef | grep nginx查看nginx服务状态

使用./nginx s reload重新加载nginx服务的配置文件

配置文件:

在etc/nginx目录中的nginx.config配置文件中http对象中引入了两个文件

http {
 #   引入文件   默认的端口就在引入文件中
 include /etc/nginx/conf.d/*.conf;
 include /etc/nginx/sites-enabled/*;
} 

配置使用:

#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
  worker_connections  1024;
}


http {
 include       mime.types;
 default_type  application/octet-stream;

 #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
 #                  '$status $body_bytes_sent "$http_referer" '
 #                  '"$http_user_agent" "$http_x_forwarded_for"';

 #access_log  logs/access.log  main;

 sendfile        on;
 #tcp_nopush     on;

 #keepalive_timeout  0;
 keepalive_timeout  65;

 #gzip  on;
 #在nginx的配置文件中进行负载均衡的配置
 upstream myserver{
   ip_hash;
   server 127.0.0.1:8080 weight=5;
   server 127.0.0.1:8081 weight=10;
   fair;
 }

 server {
   # 监听的端口
   listen       80;
   server_name  localhost;

   #charset koi8-r;

   #access_log  logs/host.access.log  main;

   location / {
     root   html;
     # 转发到本地的8080端口上 
     # proxy_pass  http://127.0.0.1:8080/;
     # 设置自己的服务
     proxy_pass  http://myserver;
     index  index.html index.htm;
   }

   #error_page  404              /404.html;

   # redirect server error pages to the static page /50x.html
   #
   error_page   500 502 503 504  /50x.html;
   location = /50x.html {
     root   html;
   }

   # proxy the PHP scripts to Apache listening on 127.0.0.1:80
   #
   #location ~ \.php$ {
   #    proxy_pass   http://127.0.0.1;
   #}

   # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
   #
   #location ~ \.php$ {
   #    root           html;
   #    fastcgi_pass   127.0.0.1:9000;
   #    fastcgi_index  index.php;
   #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
   #    include        fastcgi_params;
   #}

   # deny access to .htaccess files, if Apache's document root
   # concurs with nginx's one
   #
   #location ~ /\.ht {
   #    deny  all;
   #}
 }


 # another virtual host using mix of IP-, name-, and port-based configuration
 #
 server {
   #配置两个tomcat,并启动服务
   #监听9001端口
   listen       9000;
   #listen       somename:8080;
   server_name  localhost;

   # 当请求中又edu就转发到8080端口上
   location /edu/ {
     root   html;
     proxy_pass  http://127.0.0.1:8080/edu/student.html;
     index  index.html index.htm;
   }

   # 当请求中又vod就转发到8081端口上
   location /vod/ {
     root   html;
     proxy_pass  http://127.0.0.1:8081/vod/mouthed.html;
     index  index.html index.htm;
   }
 }


 # HTTPS server
 #
 #server {
 #    listen       443 ssl;
 #    server_name  localhost;

 #    ssl_certificate      cert.pem;
 #    ssl_certificate_key  cert.key;

 #    ssl_session_cache    shared:SSL:1m;
 #    ssl_session_timeout  5m;

 #    ssl_ciphers  HIGH:!aNULL:!MD5;
 #    ssl_prefer_server_ciphers  on;

 #    location / {
 #        root   html;
 #        index  index.html index.htm;
 #    }
 #}

}

负载均衡

http {
   include       mime.types;
   default_type  application/octet-stream;

   sendfile        on;
   keepalive_timeout  65;

   #在nginx的配置文件中进行负载均衡的配置
   upstream myserver{
     ip_hash;
     server 127.0.0.1:8080 weight=5;
     server 127.0.0.1:8081 weight=10;
     fair;
   }

 server {
   # 监听的端口
   listen       80;
   server_name  localhost;

   location / {
     root   html;
     # 设置自己的服务
     proxy_pass  http://myserver;
     index  index.html index.htm;
   }

   location = /50x.html {
     root   html;
   }
 }
}
  • 轮询(默认) 每个请求按事件顺序逐一分配到不同的后端服务器,如果后端服务器Down掉,能自动剔除。

  • weight(可以不写) weight代表权重,默认为1,权重越高被分配的客户端越多 指定轮询几率,weight和访问成正比,用于后端服务器性能不均的情况。

  • ip_hash(可以不写) 每个请求按访问ip的hash结果分配,这样每个访客固定访问一共后端服务器,可以解决session的问题。

  • fair(可以不写) 按后端服务器的响应时间来分配请求,响应时间短的优先分配。

动静分离

# 在系统中创建目录data(可以在任意地址创建,root要写绝对位置)
location /www/ {
   root   /data/;
   index  index.html index.htm;
}
location /image/ {
   root   /data/;
   # 列出文件的目录,静态文件
   autoindex on;
}

你可能感兴趣的:(Nginx)