Skip to content

Commit

Permalink
修改版本和增加faq文档
Browse files Browse the repository at this point in the history
  • Loading branch information
dushixiang committed Jan 26, 2021
1 parent 4bacdf3 commit 15d5cac
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ test/test

- [使用docker安装](docs/install-docker.md)
- [原生安装](docs/install-naive.md)
- [FAQ](docs/faq.md)

默认账号密码为 admin/admin

Expand Down
23 changes: 23 additions & 0 deletions docs/faq.md
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>
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"time"
)

const Version = "v0.1.0"
const Version = "v0.1.1"

func main() {
log.Fatal(Run())
Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "next-terminal",
"version": "0.1.0",
"version": "0.1.1",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.3.0",
Expand Down

0 comments on commit 15d5cac

Please sign in to comment.