1
0

consts.go 340 B

123456789101112131415161718192021
  1. package consts
  2. const (
  3. TestString = "frp is a fast reverse proxy to help you expose a local server behind a NAT or firewall to the internet."
  4. )
  5. const (
  6. PortServerName = "PortServer"
  7. )
  8. const (
  9. DefaultServerConfig = `
  10. [common]
  11. bind_port = {{ .PortServer }}
  12. `
  13. DefaultClientConfig = `
  14. [common]
  15. server_port = {{ .PortServer }}
  16. `
  17. )