From 7823e9879613fbf8c649036d91eb5354d85d6050 Mon Sep 17 00:00:00 2001 From: Steven Arnott Date: Tue, 7 Feb 2017 12:54:14 -0500 Subject: [PATCH] Update example for --syslog-address for unix path Update example for --syslog-address for unix path to include 'unix:' protocol that is needed. --- engine/admin/logging/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/admin/logging/overview.md b/engine/admin/logging/overview.md index 890939acd2..d9d63840cd 100644 --- a/engine/admin/logging/overview.md +++ b/engine/admin/logging/overview.md @@ -160,7 +160,7 @@ The following logging options are supported for the `syslog` logging driver: | Option | Description | Example value | |----------------------|--------------------------|-------------------------------------------| -| `syslog-address` | The address of an external `syslog` server. The URI specifier may be `[tcp|udp|tcp+tls]://host:port`, `unix://path`, or `unixgram://path`. If the transport is `tcp`, `udp`, or `tcp+tls`, the default port is `514`.| `--log-opt syslog-address=tcp+tls://192.168.1.3:514`, `--log-opt syslog-address=///tmp/syslog.sock` | +| `syslog-address` | The address of an external `syslog` server. The URI specifier may be `[tcp|udp|tcp+tls]://host:port`, `unix://path`, or `unixgram://path`. If the transport is `tcp`, `udp`, or `tcp+tls`, the default port is `514`.| `--log-opt syslog-address=tcp+tls://192.168.1.3:514`, `--log-opt syslog-address=unix:///tmp/syslog.sock` | | `syslog-facility` | The `syslog` facility to use. Can be the number or name for any valid `syslog` facility. See the [syslog documentation](https://tools.ietf.org/html/rfc5424#section-6.2.1). | `--log-opt syslog-facility=daemon` | | `syslog-tls-ca-cert` | The absolute path to the trust certificates signed by the CA. **Ignored if the address protocol is not `tcp+tls`.** | `--log-opt syslog-tls-ca-cert=/etc/ca-certificates/custom/ca.pem` | | `syslog-tls-cert` | The absolute path to the TLS certificate file. **Ignored if the address protocol is not `tcp+tls`**. | `--log-opt syslog-tls-cert=/etc/ca-certificates/custom/cert.pem` |