Nginx安装后常用功能如何配置
Nginx安装后常用功能如何配置
这篇文章主要介绍“Nginx安装后常用功能如何配置”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Nginx安装后常用功能如何配置”文章能帮助大家解决问题。
1.主配置文件与虚拟主机分离
如果虚拟主机很多的话,进行分离看起来会更方便,还可以按功能、业务进行划分,下面以两个虚拟主机为例。
完整的除去空行和注释后的配置文件:
[root@nginx-01conf]#egrep-v"#|^$"nginx.conf.bakworker_processes1;events{worker_connections1024;}http{includemime.types;default_typeapplication/octet-stream;sendfileon;keepalive_timeout65;server{listen80;server_namelocalhost;location/{roothtml;indexindex.htmlindex.htm;}error_page500502503504/50x.html;location=/50x.html{roothtml;}}}
创建/app/nginx/conf目录下虚拟主机配置目录
mkdirextra
利用server模块创建www和bbs两个虚拟站点
[root@nginx-01conf]#cat-nnginx.conf[root@nginx-01conf]#sed-n'10,20p'nginx.confserver{listen80;server_namelocalhost;location/{roothtml;indexindex.htmlindex.htm;}error_page500502503504/50x.html;location=/50x.html{roothtml;}
www站点
[root@nginx-01conf]#catextra/www.confserver{listen80;server_namewww.yygg.com;location/{roothtml/www;indexindex.htmlindex.htm;}error_page500502503504/50x.html;location=/50x.html{roothtml;}}
bbs站点
[root@nginx-01conf]#catextra/bbs.confserver{listen80;server_namebbs.yygg.com;location/{roothtml/bbs;indexindex.htmlindex.htm;}error_page500502503504/50x.html;location=/50x.html{roothtml/bbs;}}
主配置文件配置(nginx.conf)
worker_processes1;events{worker_connections1024;}http{includemime.types;default_typeapplication/octet-stream;sendfileon;keepalive_timeout65;includeextra/www.conf;includeextra/bbs.conf;}
检查配置
[root@nginx-01conf]#/app/nginx/sbin/nginx-tnginx:theconfigurationfile/app/nginx-1.18.0//conf/nginx.confsyntaxisoknginx:configurationfile/app/nginx-1.18.0//conf/nginx.conftestissuccessful
创建站点目录
[root@nginx-01conf]#mkdir/app/nginx/html/{www,bbs}[root@nginx-01conf]#echo"http://www.yygg.com">>/app/nginx/html/www/index.html[root@nginx-01conf]#echo"http://bbs.yygg.com">>/app/nginx/html/bbs/index.html[root@nginx-01conf]#echo"192.168.1.5www.yygg.combbs.yygg.com">>/etc/hosts
启动服务并测试
[root@nginx-01conf]#/app/nginx/sbin/nginx[root@nginx-01conf]#curlwww.yygg.comhttp://www.yygg.com[root@nginx-01conf]#curlbbs.yygg.comhttp://bbs.yygg.com
2.虚拟主机别名设置
以www站点为例,设置别名
所谓别名就是除了主域名外额外设置一个或多个域名
为www.yygg.com
设置别名yygg.com
。
[root@nginx-01conf]#catextra/www.confserver{listen80;server_namewww.yygg.comyygg.com;location/{roothtml/www;indexindex.htmlindex.htm;}error_page500502503504/50x.html;location=/50x.html{roothtml/www;}}
重启nginx测试
[root@nginx-01conf]#/app/nginx/sbin/nginx-sreload[root@nginx-01conf]#cat/etc/hosts192.168.1.5www.yygg.combbs.yygg.comyygg.com[root@nginx-01conf]#curlyygg.comhttp://www.yygg.com
3.Nginx status状态信息配置
状态信息记录使用的是`ngx_http_stub_status_module`模块实现
输入/app/nginx/sbin/nginx -V
检查编译是否有上述模块:
nginxversion:nginx/1.18.0builtbygcc4.8.520150623(RedHat4.8.5-16)(GCC)builtwithOpenSSL1.0.2k-fips26Jan2017TLSSNIsupportenabledconfigurearguments:--user=nginx--group=nginx--prefix=/app/nginx-1.18.0/--with-http_stub_status_module--with-http_ssl_module
创建一个status的虚拟主机,方式参考标题1,status.conf
配置文件如下:
server{listen80;server_namestatus.yygg.com;location/{stub_statuson;access_logoff;}}
主配置文件nginx.conf
追加status虚拟主机配置
sed-i'11iincludeextra/status.conf;'nginx.conf
检查语法并重启nginx
/app/nginx/sbin/nginx-t/app/nginx/sbin/nginx-sreload
配置hosts解析
192.168.1.5 status.yygg.com
访问status.yygg.com
查看
[root@nginx-01conf]#curlstatus.yygg.comActiveconnections:1serveracceptshandledrequests444Reading:0Writing:1Waiting:0
显示结果解析:
Active connections: 1 ##正处理的连接数为1
server ##共处理了4次连接
accepts ##共创建了4次握手
handled requests ##共处理了4次请求
Reading ##读取到客户端的Header信息数
Writing ##返回给客户端的Header信息数
Waiting ##NGinx已经处理完正在等候下一次请求的指令的驻留连数
4.增加错误日志
error_log语法:
error_log file level;
关键字不变,file是日志存放位置,level是错误日志级别
通常只用warn|error|crit三个级别
配置错误日志配置,在nging.conf
文件中worker_processes 1;
下添加
error_loglogs/error_log;
没错,就这一行!
关于“Nginx安装后常用功能如何配置”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注恰卡编程网行业资讯频道,小编每天都会为大家更新不同的知识点。
推荐阅读
-
CentOS环境中如何部署nginx、php和虚拟主机配置
CentOS环境中如何部署nginx、php和虚拟主机配置今天小编...
-
怎么使用docker安装nginx提供的web服务
-
Python怎么实时获取任务请求对应的Nginx日志
Python怎么实时获取任务请求对应的Nginx日志这篇文章主要讲...
-
docker怎么搭建nacos+nginx+mysql+redis+springboot项目
-
Nginx的location功能怎么配置
Nginx的location功能怎么配置本篇内容介绍了“Nginx...
-
怎么用服务器的负载均衡nginx+tomcat实现动静分离
-
Nginx反向代理与负载均衡概念及upstream模块如何使用
-
Nginx实现会话保持的方式有哪些
-
Nginx怎样实现负载均衡
-
怎么用Nginx配置web服务器