您的位置:首页 > 本地本地

nginx 现在最新版本多少

admin2024-04-02人已围观

nginx 现在最新版本多少

Development versions are nginx-0.8.21, nginx/Windows-0.8.21, the change log.

The latest stable versions are nginx-0.7.63, nginx/Windows-0.7.63, the change log.

The latest legacy stable version is nginx-0.6.39, the change log.

如何配置nginx使得某些域名指向本地目录

1. 具体的代码如下.

2. user  www www;

worker_processes auto;

#error_log  /usr/local/nginx/logs/nginx_error.log debug;

pid /usr/local/nginx/nginx.pid;

worker_rlimit_nofile 65535;

events {

        use epoll;

        worker_connections 65535;

        }

http {

  include       mime.types;

  default_type  application/octet-stream;

  server_names_hash_bucket_size 256;

  client_header_buffer_size 64k;

  large_client_header_buffers 4 64k;

  client_max_body_size 8m;

  sendfile on;

  tcp_nopush     on;

  #

  client_body_buffer_size  700k;

  proxy_connect_timeout    120;

  keepalive_timeout 60; #60

  server_tokens off;

  tcp_nodelay on;

  ##开启gzip压缩##

  gzip  on;

  gzip_min_length  1k;

  gzip_buffers     4 8k;

  gzip_vary on;

  gzip_disable MSIE [1-6]\.;

  gzip_comp_level 2;

  gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript;

  access_log off;

    server {

        listen       80;     --监听端口,当访问站点的时候需要加上端口号,(80和443端口是默认,无需添加)

        server_name  www.a.com;    --解析域名 www.a.com:80 

        location / {

            root   html;             ----网站目录/html/,编译过的nginx默认在 /usr/local/nginx/html/,yum安装的在 /var/www/html/

            index  index.html index.htm;    ----网站默认文档,访问的首页。

        }

  server {

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html

        #

        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   html;

        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80

        #

        #location ~ \.php$ {

        #    proxy_pass   

        #}

        # 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 ssl;

    #    server_name  localhost;

    #    ssl_certificate      cert.pem;

    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;

    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;

    #    ssl_prefer_server_ciphers  on;

    #    location / {

    #        root   html;

    #        index  index.html index.htm;

    #    }

    #}

}

很赞哦! ()

上一篇:电脑重新装程序后本地连接不见了不能上网怎么办?'>谈谈自媒体、新媒体和融媒体

下一篇:返回列表'>返回列表

随机图文