Nginx地址
https://nginx.org/en/download.html
Nginx文件目录
nginx-1.24.0\conf\nginx.conf 进入nginx.conf配置文件中加入一下配置
Nginx配置
server {
listen 81; # 监听的端口
server_name localhost; # 域名或ip
location / { # 访问路径配置
root ...dist;# 根目录
index index.html index.htm; # 默认首页
try_files $uri $uri/ /index.html;# History模式发布
}
error_page 500 502 503 504 /50x.html; # 错误页面
location = /50x.html {
root html;
}
}