20 lines
619 B
TOML
20 lines
619 B
TOML
# This is an example config file for defguard proxy
|
|
# To use it fill in actual values for your deployment below
|
|
|
|
# port the API server will listen on
|
|
http_port = 8080
|
|
# port the gRPC server will listen on
|
|
grpc_port = 50051
|
|
|
|
# gRPC SSL configuration
|
|
# provide certificate and key to connect to gRPC server with HTTPS
|
|
# https://defguard.gitbook.io/defguard/features/setting-up-your-instance/docker-compose#grpc-ssl-setup
|
|
# Optional: path to cert file
|
|
# grpc_cert: proxy.crt
|
|
# Optional: path to key file
|
|
# grpc_key: proxy.key
|
|
log_level = "info"
|
|
rate_limit_per_second = 0
|
|
rate_limit_burst = 0
|
|
url = "http://localhost:8080"
|