Skip to content

Commit

Permalink
Update index.md
Browse files Browse the repository at this point in the history
  • Loading branch information
spiritysdx authored Mar 11, 2024
1 parent f89475d commit 0e3b2a3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions docs/guide/deployment/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
在web目录下执行 npm run build 得到 dist文件夹 将dist文件夹上传到服务器 建议使用nginx进行代理 并且设置 proxy 把请求代理到后端

## 后端

在 server下 go build . 得到一个可执行文件然后将可执行文件和config.yaml 以及 resource 文件夹上传至服务器 三者最好放在同一路径下 最终服务器目录结构可能如下

```
Expand All @@ -22,7 +23,6 @@
```


## [Tips.] Nginx的配置(如果用的话)

代码参考如下
Expand All @@ -33,7 +33,9 @@ location /api {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
rewrite ^/api/(.*)$ /$1 break; #重写
proxy_pass 后端地址; # 设置代理服务器的协议和地址
rewrite ^/api/(.*)$ /$1 break; #重写
proxy_pass 后端地址; # 设置代理服务器的协议和地址
}
```

后端地址未作修改时默认为```http://127.0.0.1:8888```

0 comments on commit 0e3b2a3

Please sign in to comment.