mirror of https://github.com/fatedier/frp.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
340 B
Go
22 lines
340 B
Go
package consts
|
|
|
|
const (
|
|
TestString = "frp is a fast reverse proxy to help you expose a local server behind a NAT or firewall to the internet."
|
|
)
|
|
|
|
const (
|
|
PortServerName = "PortServer"
|
|
)
|
|
|
|
const (
|
|
DefaultServerConfig = `
|
|
[common]
|
|
bind_port = {{ .PortServer }}
|
|
`
|
|
|
|
DefaultClientConfig = `
|
|
[common]
|
|
server_port = {{ .PortServer }}
|
|
`
|
|
)
|