nginx 配置静态页面访问不进去
这个是文件路径
这个是我nginx.conf文件的配置
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
server{
listen 80;
server_name yfbj.heli.com;
location /{
root html/dist;
index index.html;
}
}
}