Você deve editar o arquivo /etc/nginx/conf.d/default.conf
e alterar as configurações do host virtual padrão nesse arquivo.
Eu tenho o seguinte arquivo de configuração:
# /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;
}
}
}
Existem dois arquivos em / data / www: hello.txt e index.html. No entanto, quando eu digito apenas o IP do meu servidor, a página de índice nginx padrão está sendo mostrada e ela exibe "A página que você está procurando não foi encontrada". depois de consultar " link ".
Logs:
2014/07/27 21:54:59 [error] 9070#0: *6 open() "/usr/share/nginx/html/hello.txt" failed (2: No such file or directory), client: clientIP, server: _, request: "GET /hello.txt HTTP/1.1", host: "hostIP"
Como consertar meu problema?
Tags configuration nginx centos