mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
doc: add conf template
This commit is contained in:
parent
25cfda5768
commit
655c52f9ce
29
README.md
29
README.md
@ -25,6 +25,7 @@ frp is a fast reverse proxy to help you expose a local server behind a NAT or fi
|
|||||||
* [P2P Mode](#p2p-mode)
|
* [P2P Mode](#p2p-mode)
|
||||||
* [Features](#features)
|
* [Features](#features)
|
||||||
* [Configuration File](#configuration-file)
|
* [Configuration File](#configuration-file)
|
||||||
|
* [Configuration file template](#configuration-file-template)
|
||||||
* [Dashboard](#dashboard)
|
* [Dashboard](#dashboard)
|
||||||
* [Authentication](#authentication)
|
* [Authentication](#authentication)
|
||||||
* [Encryption and Compression](#encryption-and-compression)
|
* [Encryption and Compression](#encryption-and-compression)
|
||||||
@ -345,6 +346,34 @@ You can find features which this document not metioned from full example configu
|
|||||||
|
|
||||||
[frpc full configuration file](./conf/frpc_full.ini)
|
[frpc full configuration file](./conf/frpc_full.ini)
|
||||||
|
|
||||||
|
### Configuration file template
|
||||||
|
|
||||||
|
Configuration file tempalte can be rendered using os environments. Template uses Go's standard format.
|
||||||
|
|
||||||
|
```ini
|
||||||
|
# frpc.ini
|
||||||
|
[common]
|
||||||
|
server_addr = {{ .Envs.FRP_SERVER_ADDR }}
|
||||||
|
server_port = 7000
|
||||||
|
|
||||||
|
[ssh]
|
||||||
|
type = tcp
|
||||||
|
local_ip = 127.0.0.1
|
||||||
|
local_port = 22
|
||||||
|
remote_port = {{ .Envs.FRP_SSH_REMOTE_PORT }}
|
||||||
|
```
|
||||||
|
|
||||||
|
Start frpc program:
|
||||||
|
|
||||||
|
```
|
||||||
|
export FRP_SERVER_ADDR="x.x.x.x"
|
||||||
|
export FRP_SSH_REMOTE_PORT="6000"
|
||||||
|
./frpc -c ./frpc.ini
|
||||||
|
```
|
||||||
|
|
||||||
|
frpc will auto render configuration file template using os environments.
|
||||||
|
All environments has prefix `.Envs`.
|
||||||
|
|
||||||
### Dashboard
|
### Dashboard
|
||||||
|
|
||||||
Check frp's status and proxies's statistics information by Dashboard.
|
Check frp's status and proxies's statistics information by Dashboard.
|
||||||
|
30
README_zh.md
30
README_zh.md
@ -23,6 +23,7 @@ frp 是一个可用于内网穿透的高性能的反向代理应用,支持 tcp
|
|||||||
* [点对点内网穿透](#点对点内网穿透)
|
* [点对点内网穿透](#点对点内网穿透)
|
||||||
* [功能说明](#功能说明)
|
* [功能说明](#功能说明)
|
||||||
* [配置文件](#配置文件)
|
* [配置文件](#配置文件)
|
||||||
|
* [配置文件模版渲染](#配置文件模版渲染)
|
||||||
* [Dashboard](#dashboard)
|
* [Dashboard](#dashboard)
|
||||||
* [身份验证](#身份验证)
|
* [身份验证](#身份验证)
|
||||||
* [加密与压缩](#加密与压缩)
|
* [加密与压缩](#加密与压缩)
|
||||||
@ -360,6 +361,35 @@ frp 提供了一种新的代理类型 **xtcp** 用于应对在希望传输大量
|
|||||||
|
|
||||||
[frpc 完整配置文件](./conf/frpc_full.ini)
|
[frpc 完整配置文件](./conf/frpc_full.ini)
|
||||||
|
|
||||||
|
### 配置文件模版渲染
|
||||||
|
|
||||||
|
配置文件支持使用系统环境变量进行模版渲染,模版格式采用 Go 的标准格式。
|
||||||
|
|
||||||
|
示例配置如下:
|
||||||
|
|
||||||
|
```ini
|
||||||
|
# frpc.ini
|
||||||
|
[common]
|
||||||
|
server_addr = {{ .Envs.FRP_SERVER_ADDR }}
|
||||||
|
server_port = 7000
|
||||||
|
|
||||||
|
[ssh]
|
||||||
|
type = tcp
|
||||||
|
local_ip = 127.0.0.1
|
||||||
|
local_port = 22
|
||||||
|
remote_port = {{ .Envs.FRP_SSH_REMOTE_PORT }}
|
||||||
|
```
|
||||||
|
|
||||||
|
启动 frpc 程序:
|
||||||
|
|
||||||
|
```
|
||||||
|
export FRP_SERVER_ADDR="x.x.x.x"
|
||||||
|
export FRP_SSH_REMOTE_PORT="6000"
|
||||||
|
./frpc -c ./frpc.ini
|
||||||
|
```
|
||||||
|
|
||||||
|
frpc 会自动使用环境变量渲染配置文件模版,所有环境变量需要以 `.Envs` 为前缀。
|
||||||
|
|
||||||
### Dashboard
|
### Dashboard
|
||||||
|
|
||||||
通过浏览器查看 frp 的状态以及代理统计信息展示。
|
通过浏览器查看 frp 的状态以及代理统计信息展示。
|
||||||
|
Loading…
Reference in New Issue
Block a user