Skip to content

Commit

Permalink
1. 修复README.md显示bug
Browse files Browse the repository at this point in the history
  • Loading branch information
shinn-lancelot committed Sep 12, 2018
1 parent 9a2466f commit e078988
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
### 核心功能

* 代理微信授权登陆并进行转发
##### 请求源用get方式请求代理微信授权登录地址,代理服务器获取参数后向微信服务器发起请求,从而获取code或获取access_token及openid,最后代理服务器将转发回请求源。避免了微信公众号授权登录接口只能同时由同一域名发起的限制。
##### 请求源用get方式请求代理微信授权登录地址,代理服务器获取参数后向微信服务器发起请求,从而获取code或获取access_token及openid,最后代理服务器将转发回请求源。避免了微信公众号授权登录接口只能同时由同一域名发起的限制。

### 其他特性

Expand Down Expand Up @@ -62,20 +62,20 @@
* 后台可以添加接口调用安全域名(即请求来源,仅安全域名下的请求可正常进行接口调用)。不添加安全域名无限制。
* 为了安全性,请及时修改管理员密码。
* 管理员账号密码保存在common/user.json中。虽然密码已加密,为确保信息安全,建议使用Web服务器(比如apache、nginx)限制用户直接请求json文件。
<br>
##### apache(httpd.conf)
```
<FilesMatch \.(json)$>
Order allow,deny
Deny from all
</FilesMatch>
```
##### nginx(nginx.conf)
```
location ~ .*\.(json)$ {
deny all
}
```
<br>
> apache(httpd.conf)
```
<FilesMatch \.(json)$>
Order allow,deny
Deny from all
</FilesMatch>
```
> nginx(nginx.conf)
```
location ~ .*\.(json)$ {
deny all
}
```

### 体验地址

Expand Down

0 comments on commit e078988

Please sign in to comment.