James Szalay
James Szalay
I added an options modal that lets one toggle: - Showing all regions on a single page. #9 - Expanding all tab contents - Hiding all empty resource types. #8...
It'd be great to have a button to toggle showing all resources across all regions. I'm looking to be able to submit these as a sort of report.
resolves https://github.com/mohammed90/caddy-ngrok-listener/issues/12
Resolves: https://github.com/mohammed90/caddy-ngrok-listener/issues/11
``` // WithClientInfo configures client type and version information for applications // built on this library. This is a way for consumers of this library to identify // themselves to...
`ngrok-go` surfaces a few callback handlers. These are useful from the dashboard side of ngrok. We should handle these for restarts, stops, etc. ```golang // WithConnectHandler configures a function which...
Surface the following TLSEndpointOption: ```golang // https://github.com/ngrok/ngrok-go/blob/main/config/tls_termination.go // WithTLSTermination arranges for incoming TLS connections to be automatically terminated. // The backend will then receive plaintext streams, rather than raw TLS...
Surface the following TLSEndpointOption (TLSTerminationOption): ``` // WithTLSTerminationAt determines where TLS termination should occur. // Currently, only `TLSAtEdge` is supported. func WithTLSTerminationAt(location TLSTerminationLocation) TLSTerminationOption { } ``` Eventually `agent` will...
Surface the following HTTPEndpointOption: ``` type HTTPEndpointOption func WithAllowUserAgentFilter(allow ...string) HTTPEndpointOption func WithDenyUserAgentFilter(deny ...string) HTTPEndpointOption ```
Various connection options have yet to be surfaced. This is one of them. ```golang // WithCA configures the CAs used to validate the TLS certificate returned by // the ngrok...