码迷,mamicode.com
首页 > 其他好文 > 详细

zabbix【配置文件】

时间:2018-06-05 00:48:27      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:zabbix

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【配置文件】

标签:zabbix

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!