Nginx 基础配置实例
引言
学习了核心配置文件的内容,也仅仅是学习,没有实际例子来巩固的知识容易流失,本内容带你写一个简单的 demo 实例。
每次开机都手动启动 Nginx 服务?每次使用 Nginx 的指令总是要进入 sbin 目录下?本文带你配置 Naginx 服务自启和全局 nginx 指令。
基础配置实例
前面我们已经对 Nginx 服务器默认配置文件的结构和涉及的基本指令做了详细的阐述。通过这些指令的合理配置,我们就可以让一台 Nginx 服务器正常工作,并且提供基本的 Web 服务器功能。
接下来我们将通过一个比较完整和最简单的基础配置实例,来巩固下前面所学习的指令及其配置。
需求
有如下访问:
http://192.168.199.27:8081/server1/location1
访问的是:index_sr1_location1.html http://192.168.199.27:8081/server1/location2
访问的是:index_sr1_location2.html http://192.168.199.27:8082/server2/location1
访问的是:index_sr2_location1.html http://192.168.199.27:8082/server2/location2
访问的是:index_sr2_location2.html
如果访问的资源不存在,返回自定义的 404 页面
将 /server1 和 /server2 的配置使用不同的配置文件分割,将两个文件文件放到 /home/www/conf.d 目录下,然后在 Nginx 的配置文件使用 include 合并两个文件
为 /server1 和 /server2 各自创建一个访问日志文件
实现
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| touch /home/www/404.html
mkdir /home/www/conf
touch /home/www/conf/server1.conf touch /home/www/conf/server2.conf
mkdir /home/www/myweb
mkdir -p /home/www/myweb/server1/location1 mkdir -p /home/www/myweb/server1/location2
touch /home/www/myweb/server1/location1/index.html touch /home/www/myweb/server1/location2/index.html
mkdir -p /home/www/myweb/server1/logs touch /home/www/myweb/server1/logs/access.log
|
准备相关文件,/homw/www 目录如下:
因为 Nginx 自带配置文件的备份,即 nginx.conf.default,所以我们可以直接修改配置文件,但是如果你的配置文件曾经修改过,那么请进行备份。
1
| cp /usr/local/nginx/conf/nginx.conf /usr/local/nginx/conf/nginx.conf.backup
|
备份后,进入 /usr/local/nginx/conf/nginx.conf
配置文件
1
| vim /usr/local/nginx/conf/nginx.conf
|
先清空文件,然后添加如下内容:
1
| cache-lifetime="5" :options="{ useUrlFragment: false }"
|
有注释版
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| user www; worker_processes 2; error_log logs/error.log; pid logs/nginx.pid; daemon on;
events{ accept_mutex on; multi_accept on; worker_connections 1024; use epoll; }
http{
include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; log_format server1 '===>server1 access log'; log_format server2 '===>server2 access log'; include /home/www/conf/*.conf; }
|
无注释版
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| user www; worker_processes 2; error_log logs/error.log; pid logs/nginx.pid; daemon on;
events{ accept_mutex on; multi_accept on; worker_connections 1024; use epoll; }
http{
include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; log_format server1 '===>this is server1 access log'; log_format server2 '===>this is server2 access log'; include /home/www/conf/*.conf; }
|
第 25 行代码使用 include 将 service1 和service2 的配置文件进行引用。以后无需修改主配置文件,只需要引入子配置文件即可,主配置文件作为默认值,子配置文件的内容会覆盖和主配置文件相同的内容。
进入 server1.conf 文件
1
| vim /home/www/conf/server1.conf
|
server1.conf 文件内容:
1
| cache-lifetime="5" :options="{ useUrlFragment: false }"
|
有注释版
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| server{ listen 8081; server_name localhost; access_log /home/www/myweb/server1/logs/access.log server1; error_page 404 /404.html;
location /server1/location1{ root /home/www/myweb; index index.html; }
location /server1/location2{ root /home/www/myweb; index index.html; }
location = /404.html { root /home/www; index 404.html; } }
|
无注释版
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| server{ listen 8081; server_name localhost; access_log /home/www/myweb/server1/logs/access.log server1; error_page 404 /404.html; location /server1/location1{ root /home/www/myweb; index index.html; } location /server1/location2{ root /home/www/myweb; index index.html; } location = /404.html { root /home/www; index 404.html; } }
|
server2.conf 文件内容:
1
| cache-lifetime="5" :options="{ useUrlFragment: false }"
|
有注释版
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| server{ listen 8082; server_name localhost; access_log /home/www/myweb/server2/logs/access.log server2; error_page 404 /404.html; location /server2/location1{ root /home/www/myweb; index index.html; } location /server2/location2{ root /home/www/myweb; index index.html; } location = /404.html { root /home/www; index 404.html; } }
|
无注解版
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| server{ listen 8082; server_name localhost; access_log /home/www/myweb/server2/logs/access.log server2; error_page 404 /404.html; location /server2/location1{ root /home/www/myweb; index index.html; } location /server2/location2{ root /home/www/myweb; index index.html; } location = /404.html { root /home/www; index 404.html; } }
|
server1下面的location1下面的index.html的内容
1 2 3 4 5 6 7 8 9
| <!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <h1>server1下面的loaction1下面的index.html</h1> </body> </html>
|
其他的三个页面把数字改了就可以
404.html内容;
1 2 3 4 5 6 7 8 9
| <!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <h1>不好意思,程序小哥正在加紧维修中 ...... </h1> </body> </html>
|
重启 Nginx ,使得配置文件生效
测试
如果没有关闭防火墙,记得开放 8081 和 8082 端口。
1 2 3 4 5 6
| firewall-cmd --zone=public --add-port=8081/tcp --permanent firewall-cmd --zone=public --add-port=8082/tcp --permanent
firewall-cmd --reload
|
打开浏览器分别访问,效果如图所示:
8081 的 server1 的 location1:
8081 的 server1 的 location2:
8082 的 server2 的 location1:
8082 的 server2 的 location2:
如果访问一个不存在的 404 请求:
日志也会打印,这里演示一个:
1 2 3 4 5 6 7 8 9 10 11
| [root@master www] ===>this is server1 access log ===>this is server1 access log ===>this is server1 access log ===>this is server1 access log ===>this is server1 access log ===>this is server1 access log ===>this is server1 access log ===>this is server1 access log ===>this is server1 access log ===>this is server1 access log
|
操作的问题
经过前面的操作,我们会发现,如果想要启动、关闭或重新加载 Nginx 配置文件,都需要先进入到 Nginx 的安装目录的 sbin 目录,然后使用 Nginx 的二级制可执行文件 nginx 来操作,相对来说操作比较繁琐,这块该如何优化?另外如果我们想把 Nginx 设置成随着服务器启动就自动完成启动操作,又该如何来实现?
这就需要用到接下来我们要讲解的两个知识点:
- Nginx 服务启停配置
- Nginx 全局命令配置
服务启停配置
把 Nginx 应用服务设置成为系统服务,方便对 Nginx 服务的启动和停止等相关操作,具体实现步骤:
- 在
/usr/lib/systemd/system
目录下创建 nginx.service 文件
1
| vim /usr/lib/systemd/system/nginx.service
|
文件添加如下内容:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| [Unit] Description=nginx web service Documentation=http://nginx.org/en/docs/ After=network.target
[Service] Type=forking PIDFile=/usr/local/nginx/logs/nginx.pid ExecStartPre=/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf ExecStart=/usr/local/nginx/sbin/nginx ExecReload=/usr/local/nginx/sbin/nginx -s reload ExecStop=/usr/local/nginx/sbin/nginx -s stop PrivateTmp=true
[Install] WantedBy=default.target
|
注意:可执行文件 nginx 根据自己的路径进行修改,以及 .conf 配置文件和 .pid 文件的路径。这份内容是基于默认安装目录的。
- 添加完成后,如果权限有问题需要进行权限设置,没有则忽略这一步
1
| chmod 755 /usr/lib/systemd/system/nginx.service
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| systemctl start nginx
systemctl stop nginx
systemctl restart nginx
systemctl reload nginx
systemctl status nginx
systemctl enable nginx
systemctl disable nginx
|
全局命令配置
前面我们介绍过 Nginx 安装目录下的二级制可执行文件 nginx
的很多命令,要想使用这些命令前提是需要进入 sbin 目录下才能使用,很不方便,如何去优化,我们可以将该二进制可执行文件加入到系统的环境变量,这样的话在任何目录都可以使用 nginx 对应的相关命令。具体实现步骤如下:
方法一:
1 2 3 4
| vim /etc/profile
export PATH=$PATH:/usr/local/nginx/sbin
|
可执行文件 nginx 的路径根据自己的路径修改,这里是默认路径。
1 2
| [root@master ~] nginx version: nginx/1.21.6
|
方法二:
- 将可执行文件 nginx 拷贝一份到 /usr/bin 目录下
1
| cp /usr/local/nginx/sbin/nginx /usr/bin
|
1 2
| [root@master ~] nginx version: nginx/1.21.6
|