[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/stackrox/stackrox/master/pkg/env/proxy.go [Back]  [Original]

package env

var (
	// CentralProxyCertPath is the path to the TLS certificate for the proxy server.
	CentralProxyCertPath = RegisterSetting("ROX_CENTRAL_PROXY_CERT_PATH",
		WithDefault("/run/secrets/stackrox.io/proxy-tls/tls.crt"))

	// CentralProxyKeyPath is the path to the TLS private key for the proxy server.
	CentralProxyKeyPath = RegisterSetting("ROX_CENTRAL_PROXY_KEY_PATH",
		WithDefault("/run/secrets/stackrox.io/proxy-tls/tls.key"))

	// CentralProxyPort is the port on which the proxy server listens.
	CentralProxyPort = RegisterSetting("ROX_CENTRAL_PROXY_PORT", WithDefault(":9444"))
)

Web Proxy Viewer  |  New URL  |  Original Page