8 lines
121 B
Nginx Configuration File
8 lines
121 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
# 设置根目录
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
} |