This commit is contained in:
mindskip 2021-01-12 09:25:05 +08:00
parent 9e337a6692
commit fa1810ebd7

View File

@ -122,7 +122,7 @@ npm run build
* 执行下列命令,运行程序 * 执行下列命令,运行程序
```java ```java
nohup java -Duser.timezone=Asia/Shanghai -jar -Dspring.profiles.active=prod xzs-3.0.7.jar > start1.log 2>&1 & nohup java -Duser.timezone=Asia/Shanghai -jar -Dspring.profiles.active=prod xzs-3.1.0.jar > start1.log 2>&1 &
``` ```
### 前后端分离部署 ### 前后端分离部署
@ -143,7 +143,7 @@ server {
index index.html; index index.html;
} }
location /api/ { location /api/ {
proxy_pass https://localhost:8000; proxy_pass http://localhost:8000;
} }
} }
``` ```