Назад | Перейти на главную страницу

Невозможно изменить корневое расположение по умолчанию

У меня есть следующий файл конфигурации:

# /etc/nginx/nginx.conif
# vim: ts=4

user              nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log;
#error_log  /var/log/nginx/error.log  notice;
#error_log  /var/log/nginx/error.log  info;

pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}

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  0;
    keepalive_timeout  65;

    #gzip  on;

    # Load config files from the /etc/nginx/conf.d directory
    # The default server is in conf.d/default.conf
    include /etc/nginx/conf.d/*.conf;
    server {
        charset utf-8;
        location / {
            root /data/www;
        }
    }
}

В / data / www есть два файла: hello.txt и index.html. Однако, когда я набираю только IP-адрес своего сервера, отображается страница индекса nginx по умолчанию, и она выводит сообщение «Страница, которую вы ищете, не найдена». после запроса "http://IPaddress.gov/hello.txt".

Журналы:

2014/07/27 21:54:59 [ошибка] 9070 # 0: * 6 open () "/usr/share/nginx/html/hello.txt" не удалось (2: нет такого файла или каталога), клиент: clientIP , сервер: _, запрос: «GET /hello.txt HTTP / 1.1», хост: «hostIP»

Как исправить мою проблему?

Вы должны отредактировать /etc/nginx/conf.d/default.conf файл и измените настройки виртуального хоста по умолчанию в этом файле.