zoukankan      html  css  js  c++  java
  • nginx配置

    user  nginx; worker_processes  10; worker_rlimit_nofile 100000;

    error_log   /var/log/nginx/error.log; #error_log  /var/log/nginx/error.log  notice; #error_log  /var/log/nginx/error.log  info;

    pid        /var/run/nginx.pid;

    events {     worker_connections  1024;     use epoll; }

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

        log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '                       '$status $body_bytes_sent "$http_referer" '                       '"$http_user_agent" "$http_x_forwarded_for"';

        access_log  /var/log/nginx/access.log  main;

        sendfile        on;     tcp_nopush      on;     tcp_nodelay     on;     server_tokens   on;     gzip            on;     gzip_static     on;     gzip_comp_level 5;     gzip_min_length 1024;     keepalive_timeout  65;     limit_conn_zone   $binary_remote_addr  zone=addr:10m;

        # Load config files from the /etc/nginx/conf.d directory    # include /etc/nginx/conf.d/*.conf;

        server {         limit_conn addr 10;         listen       80;         server_name  _;

            #charset koi8-r;

            #access_log  logs/host.access.log  main;

                root   /var/www/html;             index  index.html index.htm;             autoindex on;

            # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000         #         #location ~ .php$ {         #    root           html;         #    fastcgi_pass   127.0.0.1:9000;         #    fastcgi_index  index.php;         #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;         #    include        fastcgi_params;         #}

            # deny access to .htaccess files, if Apache's document root         # concurs with nginx's one         #         #location ~ /.ht {         #    deny  all;         #}     }

        # another virtual host using mix of IP-, name-, and port-based configuration     #     #server {     #    listen       8000;     #    listen       somename:8080;     #    server_name  somename  alias  another.alias;

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

        # HTTPS server     #     #server {     #    listen       443;     #    server_name  localhost;

        #    ssl                  on;     #    ssl_certificate      cert.pem;     #    ssl_certificate_key  cert.key;

        #    ssl_session_timeout  5m;

        #    ssl_protocols  SSLv2 SSLv3 TLSv1;     #    ssl_ciphers  HIGH:!aNULL:!MD5;     #    ssl_prefer_server_ciphers   on;

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

    }

  • 相关阅读:
    传Windows 7 RC泄露版中含有木马 狼人:
    金山:3G时代 上网安全面临更大挑战 狼人:
    McAfee:僵尸网新威胁远甚Conficker 狼人:
    安全专家:70GB财务数据被僵尸网络盗窃 狼人:
    卡巴斯基中国地区4月恶意软件排行榜 狼人:
    MPAA组织遭遇尴尬 网页存在XSS攻击漏洞 狼人:
    股市回暖 网上炒股安全风险骤增 狼人:
    微软首次针对Windows 7推杀毒软件 年内将推出 狼人:
    黑客数度入侵美国联邦航空总署飞航控制系统 狼人:
    瑞星对Windows7捆绑杀毒软件等消息的回应 狼人:
  • 原文地址:https://www.cnblogs.com/lubing666666/p/3910230.html
Copyright © 2011-2022 走看看