Welcome to frp!

Below is an example configuration file for frp:

        [common]
        serverAddr = "app-name.fly.dev"
        auth.token = "12345678"

        # KCP connection
        serverPort = 7000
        transport.protocol = "kcp"

        # QUIC connection
        #serverPort = 7001
        #transport.protocol = "quic"

        # TCP tunnel, requires proxyBindAddr = "0.0.0.0" in frps.toml
        [[proxies]]
        name = "minecraft-java"
        type = "tcp"
        localIP = "127.0.0.1"
        localPort = 25565
        remotePort = 25565

        # UDP tunnel, requires proxyBindAddr = "fly-global-services" in frps.toml
        [[proxies]]
        name = "minecraft-bedrock"
        type = "udp"
        localIP = "127.0.0.1"
        localPort = 19132
        remotePort = 19132