首页 > 其他 > 详细

zabbix【配置文件】

时间:2018-06-05 00:30:52      阅读:275      评论:0      收藏:0      [点我收藏+]
zabbxi中

nginx配置文件

worker_processes  1;

events {

        worker_connections  1024;

}


http {

    include       mime.types;

    default_type  application/octet-stream;

    sendfile        on;

    keepalive_timeout  65;

    error_log  /app/logs/nginx_error.log;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '

                      '$status $body_bytes_sent "$http_referer" '

                      '"$http_user_agent" "$http_x_forwarded_for"';


         include  extra/zabbix.conf;

                                                                                                 


          }

zabbix配置文件

server {                                                                                                                                                     

listen       80;

server_name  localhost;

root   /app/html/zabbix;

index  index.php index.html index.htm;

access_log  /app/logs/zabbix_access.log main;

location ~ .*\.(php|php5)?$ {

    fastcgi_pass   127.0.0.1:9000;

    fastcgi_index  index.php;

    include        fastcgi.conf;

}


    }



zabbix【配置文件】

原文:http://blog.51cto.com/13667111/2124816

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