centos7 nginx tengine 安装

参考:https://blog.csdn.net/qq_38872310/article/details/79805445

tengine 配置:

 location / {
            root   html;
            index  index.html index.htm;
        }

        location = /nginx_status {
            stub_status on;

            #allow 10.10.22.89;
            #deny all;
        }

        location /status {
            check_status;
            access_log   off;

            #allow 10.10.22.89;
            #deny all;
        }

猜你喜欢

转载自www.cnblogs.com/rigid/p/10265519.html