首頁  >  問答  >  主體

yaf - linux下nginx解析本地虚拟域名

配置yaf框架的时候,发现得配置一个虚拟域名。
于是在/etc/hosts增加了一个本地域名127.0.0.1 www.abc.com
nginx/config/vhost目录下增加一个虚拟主机文件'www.abc.com`;

server
        {
                listen 80;
                #listen [::]:80;
                server_name www.abc.com;
                index index.html index.htm index.php default.html default.htm default.php;
                root  /home/wwwroor/www.abc.com/public;

                include none.conf;
                #error_page   404   /404.html;
                location ~ [^/]\.php(/|$)
                        {
                                # comment try_files $uri =404; to enable pathinfo
                                try_files $uri =404;
                                fastcgi_pass  unix:/tmp/php-cgi.sock;
                                fastcgi_index index.php;
                                include fastcgi.conf;
                                #include pathinfo.conf;
                        }

                location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
                        {
                                expires      30d;
                        }

                location ~ .*\.(js|css)?$
                        {
                                expires      12h;
                        }

                access_log off;
        }

但是每次访问www.abc.com的时候,访问的都是wwwroot这个web根目录。
怎么让它进入/home/wwwroor/www.abc.com/public这个目录啊?

阿神阿神2765 天前478

全部回覆(2)我來回復

  • 天蓬老师

    天蓬老师2017-04-17 13:26:57

    已經解決了。設定都沒有問題,只是vhost下的設定檔少了個.conf後綴,哎,第二次犯同樣的錯了,這樣權當記錄備份吧。

    回覆
    0
  • 迷茫

    迷茫2017-04-17 13:26:57

    請確認你的設定檔 www.abc.com 是否已經成功加載,內容是否正確。判斷的方法很簡單,在這個設定檔中輸入一個錯誤的內容, 然後執行 nginx -t

    因為從題主的描述可以看出, www.abc.com 這個檔案應該需要被 nginx 的主設定檔所引用的(include),並且應該是透過 wildcard 方式載入。這就有可能出現沒有成功載入情況。

    請觀察輸出,例如:

    nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
    nginx: configuration file /etc/nginx/nginx.conf test is successful
    

    代表載入了設定檔 /etc/nginx/nginx.conf,並且沒有錯誤。

    回覆
    0
  • 取消回覆