首页 > 移动平台 > 详细

lnmp部署cacti+nagios

时间:2014-07-19 19:04:54      阅读:447      评论:0      收藏:0      [点我收藏+]

关于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程序弄出来的
}

lnmp部署cacti+nagios,布布扣,bubuko.com

lnmp部署cacti+nagios

原文:http://www.cnblogs.com/2myroad/p/3853572.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!