我尝试使用当前托管的单个网站启用虚拟主机安装nginx。
我的nginx.conf
user nginxsite;
worker_processes 4;
error_log /var/log/nginx/error.log warn;
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;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
#server_names_hash_bucket_size 64;
}
我假设user nginxsite;
是为根目录所有权创建的useradd。默认值只是nginx
。
我在/etc/nginx/conf.d/
server {
listen 80;
#listen *:80;
server_name www.nginxsite.domain.com *.nginxsite.domain.com;
#access_log /var/log/nginx/access.log
location / {
root /var/www/nginxsite.com/public_html/;
index index.html index.htm; }
}
服务器名称和ip已经添加到我的主机文件中
XX.XX.XX.XX www.nginxsite.domain.com
我很确定问题出在我的conf文件中,但我似乎无法指出在哪里。
检查了日志但没有任何内容。
请帮忙。
非常感谢!