update https to http md

This commit is contained in:
kuaifan 2021-12-10 01:30:19 +08:00
parent 4c3827158f
commit 7ef966536d
2 changed files with 11 additions and 7 deletions

View File

@ -67,10 +67,12 @@ cd dootask
### NGINX PROXY SSL
```bash
# 1、nginx config add
# 1、Nginx config add
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# 2、execute command
# 2、Enter directory and run command
./cmd https
```
@ -79,7 +81,7 @@ proxy_set_header X-Forwarded-Proto $scheme;
**Note: Please back up your data before upgrading!**
```bash
# Method 1: Enter directory and run command
# Method 1: enter directory and run command
./cmd update
# Or method 2: use this method if method 1 fails

View File

@ -67,10 +67,12 @@ cd dootask
### NGINX 代理 SSL
```bash
# 1、nginx 代理配置添加
# 1、Nginx 代理配置添加
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# 2、执行命令
# 2、进入项目所在目录,运行以下命令
./cmd https
```
@ -79,7 +81,7 @@ proxy_set_header X-Forwarded-Proto $scheme;
**注意:在升级之前请备份好你的数据!**
```bash
# 方法1进入项目所在目录运行一下命令即可
# 方法1进入项目所在目录运行以下命令
./cmd update
# 或者方法2如果方法1失败请使用此方法
@ -93,6 +95,6 @@ git pull
## 卸载项目
```bash
# 进入项目所在目录,运行一下命令即可
# 进入项目所在目录,运行以下命令
./cmd uninstall
```