zoukankan      html  css  js  c++  java
  • Nginx 配置多站点vhost

    假设你想在Linux Nginx中用不同的域名访问不同的目录,这时就要配置多个vhost,具体配置如下,假设网站根目录设定在/var/www/

    1、在/var/www/下新建两个目录

    /var/www/testsite1
    /var/www/testsite2

    2、编辑/etc/nginx/nginx.conf

    复制代码
    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;
    
        keepalive_timeout  65;
    
        #gzip  on;
    
        include /etc/nginx/conf.d/*.conf;   #主要是加入此行,如有则忽略
    }
    复制代码

    3、在/etc/nginx/conf.d下新建两个conf文件,

    /etc/nginx/conf.d/testsite1.conf
    /etc/nginx/conf.d/testsite2.conf

    4、复制如下配置信息到两个文件中,只要修改红色部分内容  !!! server_name与root保持一致即目录和域名一一对应 !!!

    复制代码
    server {
        listen       80;
        server_name   www.test.com;
    
        #charset koi8-r;
        #access_log  /var/log/nginx/host.access.log  main;
        root   /var/www/testsite1/;
        if (!-e $request_filename){    # rewrite可根据网站需要增删
                rewrite ^/(.*) /index.php last;  
        }  
    
        location / {
            index  index.php index.html index.htm;
        }
    
        #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   /var/www/testsite1/;
        }
    
        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ .php$ {
        #    proxy_pass   http://127.0.0.1;
        #}
    
        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~* .php$ {
            fastcgi_index   index.php;
            fastcgi_pass    127.0.0.1:9000;
            include           fastcgi_params;
            fastcgi_param   SCRIPT_FILENAME    $document_root$fastcgi_script_name;
            fastcgi_param   SCRIPT_NAME        $fastcgi_script_name;
        }
    
        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /.ht {
        #    deny  all;
        #}
    }
    复制代码

    5、重启Nginx

    systemctl restart nginx

    6、 编辑/etc/hosts  !!! 核心步骤 !!!

    [root@bogon ~]# vi 127.0.0.1        localhost.localdomain localhost
    ::1              localhost6.localdomain6 localhost6
    127.0.0.1        www.testsite1.com
    127.0.0.1        www.testsite2.com

    7、设置成功

  • 相关阅读:
    流浪西邮之寻找火石碎片
    给你一个666
    似魔鬼的步伐
    括号匹配2019
    挑剔程度
    到底有到少个小和尚?
    获取任务栏所有正在运行程序
    EXTJS4创建多级菜单
    关于时间的一些理解
    kof97调隐藏人物
  • 原文地址:https://www.cnblogs.com/xiaoquangege/p/9665007.html
Copyright © 2011-2022 走看看