我正在尝试重写一个非常简单的nginx.conf文件。这个项目的唯一目的是让nginx在localhost上提供静态index.html。
由于所有在线文档和教程都至少有50行配置。我想知道我的7线配置是否能够正常工作并完成我需要的工作。
}
server {
root /test/index
listen 8888;
}
}
通常我只使用默认的nginx.conf并对我正在处理的任何项目进行修改,所以我不确定我是否能像我在这里做的那样剥离并让它仍然有效?
答案 0 :(得分:3)
您最好也包含server_name,并以分号结束语句:
server {
server_name some.server.name;
listen 8888;
# or just _ (underscore) to listen to any name
root /test/index;
index index.html;
}