lnmp部署cacti+nagios

关于lnmp架构整合cacti+nagios中,nginx的配置文件是最难搞的,个人感觉

nginx.conf的配置文件

##里面用重写

server {

listen 80;
server_name laimai365.org www.laimai365.org;

location / {

# root /opt/nagios/;
root html;
index index.php index.html index.htm ;

}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;

}

location ~ .*\.(cgi|pl|perl)?$ {
root /opt/nagios;                              ###指定这个nagios目录
fastcgi_pass unix:/home/nginx/nginx-fcgi.sock;
fastcgi_index index.cgi;
fastcgi_param SCRIPT_FILENAME $document_root/sbin$fastcgi_script_name;              ###网上有些方法,测试过好像不怎么行,在这两个参数中间加个/sbin,然后下面的重写会再指向其他地方
rewrite ^/nagios/cgi-bin/(.*)\.cgi /$1.cgi break;
include fastcgi_params;
fastcgi_read_timeout 60;
auth_basic "nagiosadmin";
auth_basic_user_file /opt/nagios/etc/htpasswd.users;                 #用apache程序弄出来的
}

转载于:https://www.cnblogs.com/2myroad/p/3853572.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值