···195195 fs.BoolVar(&cli.PrintChat, "print-chat", false, "print chat messages to stdout")
196196 fs.StringVar(&cli.WHIPTest, "whip-test", "", "run a WHIP self-test with the given parameters")
197197 fs.StringVar(&cli.RelayHost, "relay-host", "wss://bsky.network", "websocket url for relay firehose")
198198- fs.Bool("insecure", false, "DEPRECATED, does nothing.")
199198 fs.StringVar(&cli.Color, "color", "", "'true' to enable colorized logging, 'false' to disable")
200199 fs.StringVar(&cli.BroadcasterHost, "broadcaster-host", "", "public host for the broadcaster group that this node is a part of (excluding https:// e.g. stream.place)")
201200 fs.StringVar(&cli.XXDeprecatedPublicHost, "public-host", "", "deprecated, use broadcaster-host or server-host instead as appropriate")
202201 fs.StringVar(&cli.ServerHost, "server-host", "", "public host for this particular physical streamplace node. defaults to broadcaster-host and only must be set for multi-node broadcasters")
203202 fs.BoolVar(&cli.Thumbnail, "thumbnail", true, "enable thumbnail generation")
204203 fs.BoolVar(&cli.SmearAudio, "smear-audio", false, "enable audio smearing to create 'perfect' segment timestamps")
205205- fs.BoolVar(&cli.ExternalSigning, "external-signing", false, "enable external signing via exec (prevents potential memory leak)")
206204 fs.StringVar(&cli.TracingEndpoint, "tracing-endpoint", "", "gRPC endpoint to send traces to")
207205 fs.IntVar(&cli.RateLimitPerSecond, "rate-limit-per-second", 0, "rate limit for requests per second per ip")
208206 fs.IntVar(&cli.RateLimitBurst, "rate-limit-burst", 0, "rate limit burst for requests per ip")
···229227 cli.StringSliceFlag(fs, &cli.Replicators, "replicators", []string{ReplicatorWebsocket}, "list of replication protocols to use (http, iroh)")
230228 fs.StringVar(&cli.WebsocketURL, "websocket-url", "", "override the websocket (ws:// or wss://) url to use for replication (normally not necessary, used for testing)")
231229 fs.BoolVar(&cli.BehindHTTPSProxy, "behind-https-proxy", false, "set to true if this node is behind an https proxy and we should report https URLs even though the node isn't serving HTTPS")
230230+231231+ fs.Bool("external-signing", true, "DEPRECATED, does nothing.")
232232+ fs.Bool("insecure", false, "DEPRECATED, does nothing.")
232233233234 lpFlags := flag.NewFlagSet("livepeer", flag.ContinueOnError)
234235 _ = starter.NewLivepeerConfig(lpFlags)