Centos 7 и nginx

Установил nginx на Centos 7, открываю страницу по ip сервера. Вместо Welcome to nginx, отображается Welcome to CentOS.

В чем тут может быть дело?

Конфиг

server {
    listen       80;
    listen       [::]:80;
    server_name  _;
    root         /usr/share/nginx/html;

    # Load configuration files for the default server block.
    include /etc/nginx/default.d/*.conf;

    error_page 404 /404.html;
    location = /404.html {
    }

    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
    }
}

Сервер перезапускал


Ответы (0 шт):