diff --git a/pages/common/frp.md b/pages/common/frp.md new file mode 100644 index 0000000000..8d721293a5 --- /dev/null +++ b/pages/common/frp.md @@ -0,0 +1,12 @@ +# frp + +> Fast Reverse Proxy: quickly set up network tunnels to expose certain services to the Internet or other external networks. +> More information: . + +- View documentation for `frpc`, the `frp` client component: + +`tldr frpc` + +- View documentation for `frps`, the `frp` server component: + +`tldr frps` diff --git a/pages/common/frpc.md b/pages/common/frpc.md new file mode 100644 index 0000000000..391b89c32a --- /dev/null +++ b/pages/common/frpc.md @@ -0,0 +1,29 @@ +# frpc + +> Connect to a `frps` server to start proxying connections on the current host. +> Part of `frp`. +> More information: . + +- Start the service, using the default configuration file (assumed to be `frps.ini` in the current directory): + +`frpc` + +- Start the service, using the newer TOML configuration file (`frps.toml` instead of `frps.ini`) in the current directory: + +`frpc {{-c|--config}} ./frps.toml` + +- Start the service, using a specific configuration file: + +`frpc {{-c|--config}} {{path/to/file}}` + +- Check if the configuration file is valid: + +`frpc verify {{-c|--config}} {{path/to/file}}` + +- Print autocompletion setup script for Bash, Fish, PowerShell, or Zsh: + +`frpc completion {{bash|fish|powershell|zsh}}` + +- Display version: + +`frpc {{-v|--version}}` diff --git a/pages/common/frps.md b/pages/common/frps.md new file mode 100644 index 0000000000..7a8cf1290b --- /dev/null +++ b/pages/common/frps.md @@ -0,0 +1,29 @@ +# frps + +> Quickly set up a reverse proxy service. +> Part of `frp`. +> More information: . + +- Start the service, using the default configuration file (assumed to be `frps.ini` in the current directory): + +`frps` + +- Start the service, using the newer TOML configuration file (`frps.toml` instead of `frps.ini`) in the current directory: + +`frps {{-c|--config}} ./frps.toml` + +- Start the service, using a specified config file: + +`frps {{-c|--config}} {{path/to/file}}` + +- Check if the configuration file is valid: + +`frps verify {{-c|--config}} {{path/to/file}}` + +- Print autocompletion setup script for Bash, Fish, PowerShell, or Zsh: + +`frps completion {{bash|fish|powershell|zsh}}` + +- Display version: + +`frps {{-v|--version}}`