summaryrefslogtreecommitdiff
path: root/doc/config
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@yahoo.com>2017-04-25 22:59:44 +0200
committerJoel Klinghed <the_jk@yahoo.com>2017-04-25 22:59:44 +0200
commit2a14dd944545e9da8a3c4445bb3f5c6aafa40dd8 (patch)
tree8aa57696abe0a51b331e4f658ed0ca00126724c3 /doc/config
parent4dd6796cc55ec427a8b94a062609a70a40ec13f9 (diff)
Add documentation for config format
Diffstat (limited to 'doc/config')
-rw-r--r--doc/config46
1 files changed, 46 insertions, 0 deletions
diff --git a/doc/config b/doc/config
new file mode 100644
index 0000000..9942eec
--- /dev/null
+++ b/doc/config
@@ -0,0 +1,46 @@
+## File to log messages to, if not set syslog is used
+# logfile =
+
+## Set address for the proxy to listen to, default is all
+# proxy_bind =
+
+## Set port for the proxy to listen to
+# proxy_port = 8080
+
+## Set max number of concurrent client connections
+# max_clients = 1024
+
+## Set max number of monitor client connections
+# max_monitors = 2
+
+## Set to true to allow monitor connections
+# monitor = false
+
+## If monitor is enabled, set address for the monitor to listen to
+# monitor_bind = localhost
+
+## If monitor is enabled, set port for the monitor to listen to
+# monitor_port = 9000
+
+## Monitors get the proxied request and response exactly as it was sent to the
+## proxy and not how it would have looked without the proxy inbetween
+# monitor_proxy_request = false
+
+## If SSL support is compiled in
+
+## SSL certificate bundle to use to verify proxy SSL connections to remote
+## servers. If not set, SSL interception is disabled.
+# ssl_cert_bundle =
+
+## SSL certificate authority to use to sign generated certificates for
+## intercepted connections. If not set, SSL interception is disabled.
+# ssl_ca_cert =
+
+## SSL private key that signed the certificate authority and to use to sign
+## generated certificates for intercepted connections.
+## If not set, SSL interception is disabled.
+# ssl_ca_key =
+
+## SSL unsecure, set to true to allow insecure connections such as SSLv3
+## and missmatched hosts and certificates
+# ssl_unsecure = false \ No newline at end of file