Nginx vhost文件无法正常工作

时间:2017-07-10 07:11:27

标签: nginx vhosts

我有一个超级简单的nginx vhost应该可以工作。我已经研究了几个小时了,我真的很茫然,没有理由不这样做。我是17.04 ubuntu和最新的nginx,

server {
    listen 80;
    server_name utig.me;

    access_log /var/www/html/utig/logs/access.log;
    error_log /var/www/html/utig/logs/error.log;

    location / {
        root   /var/www/html/utig/public/;
        index  index.html;
    }
}

任何人都知道为什么这不起作用?我只是得到了默认"欢迎来到nginx"消息。

1 个答案:

答案 0 :(得分:1)

试试这样:

server {
    listen 80;
    server_name utig.me;

    root   /var/www/html/utig/public/;
    index index.html;

    access_log /var/www/html/utig/logs/access.log;
    error_log /var/www/html/utig/logs/error.log;

    location / {
       try_files $uri $uri/ /index.html;
    }
}