nginx代理前端dist文件配置
时间: 2023-08-15 11:05:01 浏览: 367
nginx发布前端静态文件配置
可以使用nginx来代理前端dist文件,具体配置如下:
1. 在nginx的配置文件中添加一个server块,指定监听的端口号和域名:
```
server {
listen 80;
server_name yourdomain.com;
}
```
2. 在server块中添加location块,用于匹配请求的URL:
```
location / {
root /path/to/dist;
index index.html;
try_files $uri $uri/ /index.html;
}
```
其中 /path/to/dist 是你打包后的前端dist文件的路径。
3. 重启nginx服务,使配置生效。
这样配置后,当用户访问yourdomain.com时,nginx会自动返回dist目录下的index.html文件,然后前端应用会通过ajax等方式加载其他资源文件。
阅读全文