From 7b1132df13dfac02ff9105ae9a285aa3afe1ccb2 Mon Sep 17 00:00:00 2001 From: Joel Speed Date: Wed, 17 Jul 2019 09:58:11 +0100 Subject: [PATCH] Fix tls-*-file docs --- docs/4_tls.md | 6 +++--- docs/configuration/configuration.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/4_tls.md b/docs/4_tls.md index 706b665..ad96086 100644 --- a/docs/4_tls.md +++ b/docs/4_tls.md @@ -9,7 +9,7 @@ nav_order: 4 There are two recommended configurations. -1. Configure SSL Termination with OAuth2 Proxy by providing a `--tls-cert=/path/to/cert.pem` and `--tls-key=/path/to/cert.key`. +1. Configure SSL Termination with OAuth2 Proxy by providing a `--tls-cert-file=/path/to/cert.pem` and `--tls-key-file=/path/to/cert.key`. The command line to run `oauth2_proxy` in this configuration would look like this: @@ -17,8 +17,8 @@ The command line to run `oauth2_proxy` in this configuration would look like thi ./oauth2_proxy \ --email-domain="yourcompany.com" \ --upstream=http://127.0.0.1:8080/ \ - --tls-cert=/path/to/cert.pem \ - --tls-key=/path/to/cert.key \ + --tls-cert-file=/path/to/cert.pem \ + --tls-key-file=/path/to/cert.key \ --cookie-secret=... \ --cookie-secure=true \ --provider=... \ diff --git a/docs/configuration/configuration.md b/docs/configuration/configuration.md index dad9ea1..e19fd93 100644 --- a/docs/configuration/configuration.md +++ b/docs/configuration/configuration.md @@ -98,8 +98,8 @@ Usage of oauth2_proxy: -ssl-insecure-skip-verify: skip validation of certificates presented when using HTTPS -standard-logging: Log standard runtime information (default true) -standard-logging-format string: Template for standard log lines (see "Logging Configuration" paragraph below) - -tls-cert string: path to certificate file - -tls-key string: path to private key file + -tls-cert-file string: path to certificate file + -tls-key-file string: path to private key file -upstream value: the http url(s) of the upstream endpoint or file:// paths for static files. Routing is based on the path -validate-url string: Access token validation endpoint -version: print version string