美文网首页程序员
2,nginx的简单配置

2,nginx的简单配置

作者: 吾道在吾 | 来源:发表于2019-03-17 23:36 被阅读2次

    这是nginx配置文件中的一些简单信息,nginx.conf文件

    user nginx;

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

    worker_processes  1;

    events {

        worker_connections  1024;

    }

    http {

            include      mime.types;

            default_type  application/octet-stream;

            sendfile        on;

            keepalive_timeout  65;

            tcp_nopush    on;   

    tcp_nodelay    on;

    gzip  on;

        server {

            listen      80;

            server_name  xiaomi.liubo.com;

    root /data/web;

            location / {

                index  index.php index.html index.htm;

            }

    location ~ \.php$ {

        fastcgi_pass  127.0.0.1:9000;

                fastcgi_index  index.php;

                fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;

                include        fastcgi_params;

    }

            error_page  500 502 503 504  /50x.html;

            location = /50x.html {

                root  html;

                }

            }

            include vhost/*.conf;

    }

    相关文章

      网友评论

        本文标题:2,nginx的简单配置

        本文链接:https://www.haomeiwen.com/subject/lnfmmqtx.html