nginx_轻量级http服务应用

来源:互联网 发布:淘宝网日本代购 编辑:程序博客网 时间:2024/06/15 04:48

本人一般用来挂页面通知,或暂停服务的通知,比较实用

配合iptables实用很爽很安逸

 

 

worker_processes 4;
worker_rlimit_nofile 51200;
error_log logs/nginx_error.log crit;

 

 

events {
    use epoll;
    worker_connections 51200;
}

 

 

http {
    include mime.types;
    default_type application/octet-stream;

    sendfile on;
    tcp_nopush on;
    keepalive_timeout 30;
    tcp_nodelay on;

 

 

    server {
        listen 8040;

        error_page 404 =200 /index.wml;
        location / {
            index index.wml;
            root /home/ftp/info/;
        }

        location /ngxstatus {
            stub_status on;
        }
    }
}

 

然后再/home/ftp/info/下搞个index.wml的通知页面,很好很强大

原创粉丝点击