修改版本和增加faq文档

This commit is contained in:
dushixiang
2021-01-26 23:30:48 +08:00
parent 4bacdf3dbe
commit 15d5cac689
4 changed files with 26 additions and 2 deletions

23
docs/faq.md Normal file
View File

@ -0,0 +1,23 @@
# 常见问题
<details>
<summary>如何进行反向代理?</summary>
主要是反向代理websocket示例如下
```shell
location / {
proxy_pass http://127.0.0.1:8088/;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
}
```
</details>
<details>
<summary>访问realvnc提示验证失败</summary>
把加密类型修改为 Prefer On
</details>