Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // Name of the proxy Name = "proxy" // The address of the proxy Address = ":8081" // Is gRPCWeb enabled GRPCWebEnabled = false // The address of the proxy GRPCWebAddress = ":8082" // the proxy protocol Protocol = "grpc" // The endpoint host to route to Endpoint string // ACME (Cert management) ACMEProvider = "autocert" ACMEChallengeProvider = "cloudflare" ACMECA = acme.LetsEncryptProductionCA )
View Source
var ( Flags = []cli.Flag{ &cli.BoolFlag{ Name: "enable_acme", Usage: "Enables ACME support via Let's Encrypt. ACME hosts should also be specified.", EnvVars: []string{"MICRO_PROXY_ENABLE_ACME"}, }, &cli.StringFlag{ Name: "acme_hosts", Usage: "Comma separated list of hostnames to manage ACME certs for", EnvVars: []string{"MICRO_PROXY_ACME_HOSTS"}, }, &cli.StringFlag{ Name: "acme_provider", Usage: "The provider that will be used to communicate with Let's Encrypt. Valid options: autocert, certmagic", EnvVars: []string{"MICRO_PROXY_ACME_PROVIDER"}, }, &cli.BoolFlag{ Name: "enable_tls", Usage: "Enable TLS support. Expects cert and key file to be specified", EnvVars: []string{"MICRO_PROXY_ENABLE_TLS"}, }, &cli.StringFlag{ Name: "tls_cert_file", Usage: "Path to the TLS Certificate file", EnvVars: []string{"MICRO_PROXY_TLS_CERT_FILE"}, }, &cli.StringFlag{ Name: "tls_key_file", Usage: "Path to the TLS Key file", EnvVars: []string{"MICRO_PROXY_TLS_KEY_FILE"}, }, &cli.StringFlag{ Name: "tls_client_ca_file", Usage: "Path to the TLS CA file to verify clients against", EnvVars: []string{"MICRO_PROXY_TLS_CLIENT_CA_FILE"}, }, &cli.StringFlag{ Name: "address", Usage: "Set the proxy http address e.g 0.0.0.0:8081", EnvVars: []string{"MICRO_PROXY_ADDRESS"}, }, &cli.StringFlag{ Name: "protocol", Usage: "Set the protocol used for proxying e.g mucp, grpc, http", EnvVars: []string{"MICRO_PROXY_PROTOCOL"}, }, &cli.StringFlag{ Name: "endpoint", Usage: "Set the endpoint to route to e.g greeter or localhost:9090", EnvVars: []string{"MICRO_PROXY_ENDPOINT"}, }, &cli.BoolFlag{ Name: "grpc-web", Usage: "Enable the gRPCWeb server", EnvVars: []string{"MICRO_PROXY_GRPC_WEB"}, }, &cli.StringFlag{ Name: "grpc-web-addr", Usage: "Set the gRPC web addr on the proxy", EnvVars: []string{"MICRO_PROXY_GRPC_WEB_ADDRESS"}, }, } )
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.