配置 Nginx
-
NGINX_HOME/conf/nginx.conf -
http
- server
- location
- server
http {
server {
listen 80;
server_name localhost;
location / {
root D:\git-repo\lsieun.github.io\_site;
index index.html index.htm;
}
}
}