Nginx实现浏览器可实时查看项目日志和配置

修改nginx.conf配置,添加/logs和/conf

    server
    {
        listen 8082;
        server_name 172.16.8.95;
        index index.php;
        root /home/wwwroot/default;
        error_log  /home/wwwlogs/default-error.log debug;
        include enable-php.conf;
        error_page   404   /404.html;
        access_log  /home/wwwlogs/default-access.log main;
        location /logs {
             #Nginx项目日志目录
             alias /home/wwwlogs;

             #打开目录浏览功能
             autoindex on;

             #默认为on,显示出文件的确切大小,单位是bytes
             #显示出文件的大概大小,单位是kB或者MB或者GB
             autoindex_exact_size off;

             #默认为off,显示的文件时间为GMT时间。
             #改为on后,显示的文件时间为文件的服务器时间
             autoindex_localtime on;
             #让浏览器不保存临时文件
             add_header Cache-Control no-store;
        }
        location /conf {
             #Nginx项目配置目录
             alias /usr/local/nginx/conf;

             #打开目录浏览功能
             autoindex on;

             #默认为on,显示出文件的确切大小,单位是bytes
             #显示出文件的大概大小,单位是kB或者MB或者GB
             autoindex_exact_size off;

             #默认为off,显示的文件时间为GMT时间。
             #改为on后,显示的文件时间为文件的服务器时间
             autoindex_localtime on;
             #让浏览器不保存临时文件
             add_header Cache-Control no-store;
        }
    }

访问

配置:http://172.16.8.95:8082/conf/
日志:http://172.16.8.95:8082/logs/

你可能感兴趣的:(Nginx实现浏览器可实时查看项目日志和配置)