1、nginx 是什么?
nginx
是⼀款⾼性能的 http
服务器 / 反向代理服务器及电⼦邮件(IMAP
/ POP3
)代理服务器。由俄罗斯程序设计师伊⼽尔·⻄索夫(Igor Sysoev)所开发,官⽅测试 nginx
能够⽀撑 5 万并发链接,并且 cpu
、内存等资源消耗⾮常低,运⾏⾮常稳定。
2、nginx 能够做什么?
2.1 web服务器
nginx
可以作为静态页面的 web 服务器,同时还支持 CGI 协议的动态语言,比如 perl、php 等。但是不支持 java。Java 程序只能通过与 tomcat 配合完成。
2.2 反向代理
反向代理(Reverse Proxy)⽅式是指以代理服务器来接受
internet
上的连接请求,然后将请求转发给内部⽹络上的服务器,并将从服务器上得到的结果返回给internet
上请求连接的客户端,此时代理服务器对外就表现为⼀个反向代理服务器。
此处反向代理主要用于实现负载均衡。
2.3 正向代理
通过代理服务器来访问服务器的过程就叫正向代理。
nginx
不仅可以做反向代理,实现负载均衡。还能用作正向代理来进行上网等功能。
2.4 负载均衡
将单个服务分布式部署在多个不同的服务器上,然后通过不同的算法将原先集中到单个服务器上的请求分发到不同的服务器上,这就是我们所说的负载均衡。
2.5 动静分离
将动态数据和静态网页由不同的服务器运行,加快网页解析速度,降低原来单个服务器的压力。
3、使用 docker
安装 nginx
3.1 搜索 nginx
镜像
$ docker search nginx
3.2 拉取 nginx
镜像
$ docker pull nginx
3.3 创建容器,设置端口映射、目录映射
# 在 /root ⽬录下创建 nginx ⽬录⽤于存储nginx数据信息
$ mkdir ~/nginx
$ cd ~/nginx
$ mkdir conf
$ cd conf
# 在 ~/nginx/conf/ 下创建 nginx.conf ⽂件,粘贴下⾯内容
$ vim nginx.conf
~/nginx/conf/nginx.conf:
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024; }
http {
include /etc/nginx/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 /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
~/nginx/conf.d/80.conf:
server {
listen 80; # 监听的端⼝
server_name localhost; # 域名或ip
location / { # 访问路径配置
root /usr/share/nginx/html;# 根⽬录
index index.html index.htm; # 默认⾸⻚
}
error_page 500 502 503 504 /50x.html; # 错误⻚⾯
location = /50x.html {
root html;
}
}
3.4 启动容器
docker run -id --name=c_nginx \
-p 80:80 \
-p 81:81 \
-p 82:82 \
-v $PWD/conf/nginx.conf:/etc/nginx/nginx.conf \
-v $PWD/conf.d:/etc/nginx/conf.d \
-v $PWD/logs:/var/log/nginx \
-v $PWD/html:/usr/share/nginx/html \
nginx