-
Notifications
You must be signed in to change notification settings - Fork 730
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
dushixiang
committed
Jan 26, 2021
1 parent
4bacdf3
commit 15d5cac
Showing
4 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ import ( | |
"time" | ||
) | ||
|
||
const Version = "v0.1.0" | ||
const Version = "v0.1.1" | ||
|
||
func main() { | ||
log.Fatal(Run()) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters