nginx本地部署vue,并反向代理配置
时间: 2023-12-04 11:47:49 浏览: 90
好的,以下是一个简单的 nginx 本地部署 Vue 应用并反向代理配置的示例:
1. 打包 Vue 应用
首先需要在本地打包 Vue 应用,运行以下命令:
```
npm run build
```
打包完成后,会在项目根目录下生成一个 `dist` 目录,其中包含了所有打包后的静态文件。
2. 配置 nginx
在 nginx 的配置目录中,创建一个新的配置文件,比如 `myapp.conf`,并将以下内容复制进去:
```
server {
listen 80;
server_name myapp.com;
root /path/to/dist; # 将 "/path/to/dist" 改为你实际的 dist 目录路径
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location /api/ {
proxy_pass http://localhost:8080/api/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
```
其中,`myapp.com` 是你的域名,`/path/to/dist` 是你的 Vue 应用的打包后的静态文件所在的目录路径,`/api/` 是你要反向代理的后端 API 的前缀,`localhost:8080` 是你要代理的本地服务地址。
在上面的配置中,`location /` 部分将所有请求都指向 Vue 应用的入口文件 `index.html`,`location /api/` 部分将以 `/api/` 开头的请求代理到本地服务上,并设置了一些请求头,包括 `Host`、`X-Real-IP` 和 `X-Forwarded-For`。
3. 启动 nginx
将 `myapp.conf` 配置文件放置在 nginx 的配置目录中,通常位于 `/etc/nginx/conf.d/` 目录下。最后,重启 nginx 服务以应用新的配置。
```
sudo service nginx restart
```
现在,你可以通过访问 `http://myapp.com` 来访问 Vue 应用,并通过访问 `http://myapp.com/api/` 来访问本地服务的 API 接口了。
阅读全文