add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

24
pages.zh/common/ngrok.md Normal file
View File

@@ -0,0 +1,24 @@
# ngrok
> 反向代理通过公共端点创建一个安全隧道连接到本地运行的web服务。
> 更多信息:<https://ngrok.com>。
- 在指定端口上暴露本地HTTP服务
`ngrok http {{80}}`
- 在特定主机上暴露本地HTTP服务
`ngrok http {{foo.dev}}:{{80}}`
- 暴露本地HTTPS服务器
`ngrok http https://localhost`
- 在指定端口上暴露TCP流量
`ngrok tcp {{22}}`
- 为特定主机和端口暴露TLS流量
`ngrok tls -hostname={{foo.com}} {{443}}`