Commit a7a16b67 authored by 马超's avatar 马超

doc: 添加nginx配置和重启逻辑

parent 46929399
...@@ -79,6 +79,28 @@ cp bpm/bpm-startup-1.0.0.jar fatjar/ ...@@ -79,6 +79,28 @@ cp bpm/bpm-startup-1.0.0.jar fatjar/
cp -r bpm/ui/bpm /usr/local/nginx/html/ cp -r bpm/ui/bpm /usr/local/nginx/html/
``` ```
修改nginx配置文件,添加以下内容
```conf
location /bpm {
try_files $uri $uri/ /bpm/index.html;
}
```
重启nginx
```shell
#关闭nginx
./nginx -s stop
```
```shell
#启动nginx
./nginx
```
## 三、启动bpm服务 ## 三、启动bpm服务
```shell ```shell
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment