1.安装

  1. [root@web01 ~]# cat /etc/yum.repos.d/nginx.repo
  2. [nginx]
  3. baseurl = http://nginx.org/packages/centos/$releasever/$basearch/
  4. enabled = 1
  5. gpgcheck = 0
  6. name = nginx repo

2.查看编译模块

  1. [root@web01 ~]# nginx -V
  2. nginx version: nginx/1.22.0
  3. built by gcc 4.8.5 20150623 (Red Hat 4.8.5-44) (GCC)
  4. built with OpenSSL 1.0.2k-fips 26 Jan 2017
  5. TLS SNI support enabled
  6. configure arguments: --prefix=/etc/nginx
  7. --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules
  8. --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log
  9. --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid
  10. --lock-path=/var/run/nginx.lock
  11. --http-client-body-temp-path=/var/cache/nginx/client_temp
  12. --http-proxy-temp-path=/var/cache/nginx/proxy_temp
  13. --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp
  14. --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp
  15. --http-scgi-temp-path=/var/cache/nginx/scgi_temp
  16. --user=nginx --group=nginx
  17. --with-compat --with-file-aio --with-threads
  18. --with-http_addition_module --with-http_auth_request_module
  19. --with-http_dav_module --with-http_flv_module
  20. --with-http_gunzip_module --with-http_gzip_static_module
  21. --with-http_mp4_module --with-http_random_index_module
  22. --with-http_realip_module --with-http_secure_link_module
  23. --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module
  24. --with-http_sub_module --with-http_v2_module --with-mail --with-mail_ssl_module
  25. --with-stream --with-stream_realip_module --with-stream_ssl_module
  26. --with-stream_ssl_preread_module
  27. --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC'
  28. --with-ld-opt='-Wl,-z,relro -Wl,-z,now -pie'

源码编译安装
[root@web01 ~]# wget http://nginx.org/download/nginx-1.14.2.tar.gz
[root@web01 ~]# tar xf nginx-1.14.2.tar.gz
[root@web01 ~]# cd nginx-1.14.2/
[root@web01 nginx-1.14.2]# ./configure —prefix=/etc/nginx —sbin-path=/usr/sbin/nginx —modules-path=/usr/lib64/nginx/modules —conf-path=/etc/nginx/nginx.conf —error-log-path=/var/log/nginx/error.log —http-log-path=/var/log/nginx/access.log —pid-path=/var/run/nginx.pid —lock-path=/var/run/nginx.lock —http-client-body-temp-path=/var/cache/nginx/client_temp —http-proxy-temp-path=/var/cache/nginx/proxy_temp —http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp —http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp —http-scgi-temp-path=/var/cache/nginx/scgi_temp —user=nginx —group=nginx —with-compat —with-file-aio —with-threads —with-http_addition_module —with-http_auth_request_module —with-http_dav_module —with-http_flv_module —with-http_gunzip_module —with-http_gzip_static_module —with-http_mp4_module —with-http_random_index_module —with-http_realip_module —with-http_secure_link_module —with-http_slice_module —with-http_ssl_module —with-http_stub_status_module —with-http_sub_module —with-http_v2_module —with-mail —with-mail_ssl_module —with-stream —with-stream_realip_module —with-stream_ssl_module —with-stream_ssl_preread_module —with-cc-opt=’-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong —param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC’ —with-ld-opt=’-Wl,-z,relro -Wl,-z,now -pie’
[root@web01 nginx-1.14.2]# make && make install

目录结构

启动Nginx
[root@web01 ~]# systemctl enable nginx && systemctl start nginx

启动方式有两种:
nginx 启动
nginx -s stop 停止
nginx -s reload |restart 重载服务

  1. systemctl start nginx<br /> systemctl restart nginx<br /> systemctl stop nginx

nginx配置文件
[root@web01 ~]# cat /etc/nginx/nginx.conf
———————-核心模块
user nginx; #nginx进程运行的用户
worker_processes 1; #nginx工作的进程数量
error_log /var/log/nginx/error.log warn; #nginx的错误日志【警告及其警告以上的都记录】
pid /var/run/nginx.pid; #nginx进程运行后的进程id
———————

———————-事件模块
events {
worker_connections 1024; #一个work进程的最大连接数
use epool; #使用epool网络模型
}
———————

———————-http核心层模块
http {
include /etc/nginx/mime.types; #包含资源类型文件
default_type application/octet-stream; #默认以下载方式传输给浏览器(前提是该资源在mime.types中无法找到)

  1. 日志格式定义<br /> log_format main '$remote_addr - $remote_user [$time_local] "$request" '<br /> '$status $body_bytes_sent "$http_referer" '<br /> '"$http_user_agent" "$http_x_forwarded_for"';
  2. access_log /var/log/nginx/access.log main; #访问日志
  3. sendfile on; <br /> #tcp_nopush on;<br /> keepalive_timeout 65; #长连接超时时间<br /> #gzip on; #是否开启压缩功能<br /> <br /> include /etc/nginx/conf.d/*.conf; #包含哪个目录下面的*.conf文件<br /> <br /> server { 定义一个网站<br /> listen 80; #监听端口<br /> server_name localhost; #域名
  4. #charset koi8-r; #字符集
  5. location / { #位置<br /> root /usr/share/nginx/html; #代码的主文件位置<br /> index index.html index.htm; #服务端默认返回给用户的文件<br /> }<br /> location /test { #位置<br /> root /code/test/123/; #代码的主文件位置<br /> index index.html index.htm; #服务端默认返回给用户的文件<br /> }<br /> }

http server location扩展了解项
http{}层下允许有多个Server{}层,一个Server{}层下又允许有多个Location
http{} 标签主要用来解决用户的请求与响应。
server{} 标签主要用来响应具体的某一个网站。
location{} 标签主要用于匹配网站具体URL路径。

Nginx搭建一个静态资源web服务器

1.编写Nginx配置文件
[root@web01 conf.d]# cat game.conf
server {
listen 80;
server_name game.oldboy.com;

  1. location / {<br /> root /code;<br /> index index.html;<br /> }<br />}

2.根据配置文件,创建目录,上传代码
[root@web01 ~]# mkdir /code
[root@web01 ~]# cd /code
[root@web01 ~]# rz html5.zip
[root@web01 code]# unzip html5.zip

3.重载nginx服务
[root@web01 code]# systemctl restart nginx #立即重启
[root@web01 code]# systemctl reload nginx #平滑重启

4.配置域名解析
Windows: C:\Windows\System32\drivers\etc
10.0.0.7 game.oldboy.com
Mac sudo vim /etc/hosts
10.0.0.7 game.oldboy.com

C:\Users\Administrator>ping game.oldboy.com #检查解析的是否是10.0.0.7
正在 Ping game.oldboy.com [10.0.0.7] 具有 32 字节的数据:
来自 10.0.0.7 的回复: 字节=32 时间=9ms TTL=64
来自 10.0.0.7 的回复: 字节=32 时间<1ms TTL=64
来自 10.0.0.7 的回复: 字节=32 时间<1ms TTL=64
来自 10.0.0.7 的回复: 字节=32 时间<1ms TTL=64


5.通过浏览器访问对应的项目
game.oldboy.com

root /code
index index.html index.htm;


http://game.oldboy.com/game/duxinshu/index.html 用户请求的路径

实际上服务器查找的路径 /code/game/duxinshu/index.html

http://game.oldboy.com/game/yyncl/
code/game/yyncl/index.html

nginx虚拟主机

Nginx配置虚拟主机有如下三种方式:
方式一、基于主机多IP方式

1.配置多网卡多IP的方式
[root@web01 conf.d]# cat ip.conf
server {
listen 10.0.0.7:80;
servername ;

  1. location / {<br /> root /code_ip_eth0;<br /> index index.html;<br /> }<br />}

server {
listen 172.16.1.7:80;
servername ;

  1. location / {<br /> root /code_ip_eth1;<br /> index index.html;<br /> }<br />}

2.根据配置创建目录
[root@web01 conf.d]# mkdir /code_ip_eth0
[root@web01 conf.d]# echo “Eth0” > /code_ip_eth0/index.html

[root@web01 conf.d]# mkdir /code_ip_eth1
[root@web01 conf.d]# echo “Eth1” > /code_ip_eth1/index.html

3.重启nginx服务
[root@web01 conf.d]# systemctl restart nginx

4.使用curl命令测试
[root@web01 ~]# curl 172.16.1.7
Eth1
[root@web01 ~]# curl 10.0.0.7
Eth0

方式二、基于端口的配置方式

1.配置多端口的虚拟主机
[root@web01 conf.d]# vim port.conf
server {
listen 81;

location / {
root /code_81;
index index.html;
}
}
server {
listen 82;

location / {
root /code_82;
index index.html;
}
}

2.根据配置文件创建所需的目录
[root@web01 conf.d]# mkdir /code_8{1..2}
[root@web01 conf.d]# echo “81” > /code_81/index.html
[root@web01 conf.d]# echo “82” > /code_82/index.html

3.检查语法并重启服务
[root@web01 conf.d]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
[root@web01 conf.d]# systemctl restart nginx

4.如何去访问
http://10.0.0.7:82/

方式三、基于多个hosts名称方式(多域名方式)
1.准备多虚拟主机配置文件
[root@web01 conf.d]# cat test1.oldboy.com.conf
server {
listen 80;
server_name test1.oldboy.com;

  1. location / {<br /> root /code/test1;<br /> index index.html;<br /> }<br />}

[root@web01 conf.d]# cat test2.oldboy.com.conf
server {
listen 80;
server_name test2.oldboy.com;

  1. location / {<br /> root /code/test2;<br /> index index.html;<br /> }<br />}

2.根据配置文件创建对应的目录
[root@web01 conf.d]# mkdir /code/test{1..2} -p
[root@web01 conf.d]# echo “test1_server” > /code/test1/index.html
[root@web01 conf.d]# echo “test2_server” > /code/test2/index.html
[root@web01 conf.d]# nginx -t
[root@web01 conf.d]# systemctl restart nginx

3.配置域名解析
10.0.0.7 test1.oldboy.com
10.0.0.7 test2.oldboy.com

4.通过浏览器访问该网站

nginx自查
1.修改完配置记得使用 nginx -t 检查语法
2.如果没有检查语法,直接重载导致报错。systemctl status nginx -l 查看错误信息

nginx日志
访问日志:

server {
listen 80;
server_name code.oldboy.com;

#将当前的server网站的访问日志记录至对应的目录,使用main格式
access_log /var/log/nginx/code.oldboy.com.log main;
location / {
root /code;
}

#当有人请求改favicon.ico时,不记录日志
location /favicon.ico {
access_log off;
return 200;
}
}

错误日志
tail -f /var/log/nginx/error.log

———————————————————————————————
nginx
安装
yum
编译
配置
目录结构
配置文件
核心层
事件层
http层
启动
启动与停止两种方式
nginx
systemctl
搭建静态游戏网页

nginx虚拟主机
多IP的虚拟主机
多端口虚拟主机
多域名虚拟主机

nginx排错(服务无法启动时需要使用到的命令)
nginx -t
systemctl status nginx -l

  1. nginx日志(网站访问异常,需要提取日志进行分析)<br /> log_format 定义日志变量<br /> access_log 定义 <br /> access_log off<br /> 日志的作用域 <br /> errror_log<br /> <br />