本文主要是介绍nginx-虚拟主机如何配置,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
8、 nginx 命令功能
nginx -c /path/nginx.conf # 以特定目录下的配置文件启动nginx:
nginx -s reload # 修改配置后重新加载生效
nginx -s stop # 快速停止nginx
nginx -s quit # 正常停止nginx
nginx -t # 测试当前配置文件是否正确
nginx -t -c /path/to/nginx.conf # 测试特定的nginx配置文件是否正确
#注意:
nginx -s reload 命令加载修改后的配置文件(不停服务 配置文件从新生效)
nginx 虚拟机配置基于ip和不同端口访问
nginx可以实现虚拟主机的配置,nginx支持三种类型的虚拟主机配置(一般1和3用的比较多)1、基于域名的虚拟主机 (server_name来区分虚拟主机——应用:外部网站)
2、基于ip的虚拟主机, (一块主机绑定多个ip地址)
3、基于端口的虚拟主机 (端口来区分虚拟主机——应用:公司内部网站,外部网站的管理后台)
cd /usr/local/nginx/conf/
vim nginx.conf//修改域名
server_name 是域名
access_log 是日志文件server {listen 80;server_name www.abc.com;;access_log logs/host.access.log log_server;location / {root html;index index.html index.htm;}}
}vim /etc/hosts
192.168.171.17 www.abc.com
然后在Ping一下 看是否能成功
ping www.abc.com
curl -I http://www.abc.com在window中
C:\Windows\System32\drivers\etc
修改hosts文件 添加
192.168.171.17 www.abc.com
在去黑窗口中cmd
ping www.abc.com一个server是一个主机
root 是放网站别的路径
mkdir -p /data/efgwwwroot //创建文件夹
cd /data/efgwwwroot
vim index.html //默认首页
www.efg.com
nginx -t
nginx -s reloadserver {listen 81;server_name localhost;access_log logs/host.access.log log_server;location / {root /data/efgwwwroot;index index.html index.htm;}}
server主机太多了怎么办
server主机太多了怎么办 进入到这里面cd /usr/local/nginx/conf/vim nginx.conf在最后一个括号上面添加一个( 要先在/usr/local/nginx里创建一个文件夹 mkdir conf.d)
include conf.d/*.conf;(这个不行就用下面的绝对路径)
include /usr/local/nginx/conf.d/*.conf;
cd conf.d/(如果还有server继续往里面添加www.abc.com.conf)
vim www.efg.com.conf (在把下面的代码添加进行)access_log 把日志指定到 /usr/local/nginx/logs中 server {listen 81;server_name localhost;access_log logs/www.efg.com.access.log log_server;location / {root /data/efgwwwroot;index index.html index.htm;}}
调优参数
events {worker_connections 1024;use epoll; //加上这个参数就可以速度加快
}
日志的优化
cd /usr/local/nginx/conf.dvim server_log(这个就不要带.conf了)log_format log_server '[$time_local] $remote_addr - $remote_user "$request" ''$status "$http_referer" ''"$http_user_agent" "$http_x_forwarded_for"';在去添加一行参数
cd /usr/local/nginx/conf/nginx.conf
include /usr/local/nginx/conf.d/server_log;
真实案例
#把要统计的对象作为索引,最后对他们的值进行累加,累加出来的这个值就是你的统计数量1. 统计/etc/passwd中各种类型shell的数量
# cat /etc/passwd | awk -F: '{shells[$NF]++} END{ for(i in shells){print i,shells[i]} }'2.统计nginx日志出现的状态码
# cat access.log | awk '{stat[$9]++} END{for(i in stat){print i,stat[i]}}'3.统计当前nginx日志中每个ip访问的数量
# cat access.log | awk '{ips[$1]++} END{for(i in ips){print i,ips[i]}}'4.统计某一天的nginx日志中的不同ip的访问量
# cat access.log |grep '28/Sep/2019' | awk '{ips[$1]++} END{for(i in ips){print i,ips[i]}}' 5.统计nginx日志中某一天访问最多的前10个ip
# cat access.log |grep '28/Sep/2019' | awk '{ips[$1]++} END{for(i in ips){print i,ips[i]}}' |sort -k2 -rn | head -n 2
sort:排序,默认升序
-k:指定列数
-r:降序
-n:以数值来排序6.统计tcp连接的状态---下去自己查各个状态,包括什么原因造成的!
# netstat -n | awk '/^tcp/ {tcps[$NF]++} END {for(i in tcps) {print i, tcps[i]}}'
LAST_ACK 5 (正在等待处理的请求数)
SYN_RECV 30
ESTABLISHED 1597 (正常数据传输状态)
FIN_WAIT1 51
FIN_WAIT2 504
TIME_WAIT 1057 (处理完毕,等待超时结束的请求数)
经典案例
UV与PV统计
PV:即访问量,也就是访问您商铺的次数;
例如:今天显示有300 PV,则证明今天你的商铺被访问了300次。
================================================================
UV:即访问人数,也就是有多少人来过您的商铺; #需要去重
例如:今天显示有50 UV,则证明今天有50个人来过你的商铺。
=================================================================
1.根据访问IP统计UV
# cat access.log | awk '{print $1}' |sort |uniq -c | wc -l
uniq:去重
-c:统计每行连续出现的次数
2.更具访问ip统计PV
# cat access.log | awk '{print $1}' |wc -l
或者是url
# cat access.log | awk '{print $7}' |wc -l
3.查询访问最频繁的URL
# cat access.log | awk '{print $7}'|sort | uniq -c |sort -n -k 1 -r | more
4.查询访问最频繁的IP
# cat access.log | awk '{print $1}'|sort | uniq -c |sort -n -k 1 -r | more
这篇关于nginx-虚拟主机如何配置的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!