Skip to content

Commit 2f21cb2

Browse files
authored
Add 'require_client_certs' variable to README
1 parent 1843dbf commit 2f21cb2

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

README.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -107,18 +107,19 @@ of Erlang property list.
107107

108108
*Configuration variables*
109109

110-
| Variable name | Expected values | Apache equivalent | Definition
111-
-----------------------|------------------------------------|-----------------------|--------------------------------------------
112-
| `dev_mode` | `true`, `false` | None | Enables TCP access without TLS.
113-
| `tls_port` | `700` | Listen | At which port should we open a TLS socket. Default is 700.
114-
| `tcp_port` | `70000` | Listen | At which port should we open a TCP socket. Only in `dev_mode`.
115-
| `epp_session_url` | `https://example.com/epp/session` | EppSessionRoot | HTTP address of the session endpoints including schema and port.
116-
| `epp_command_url` | `https://example.com/epp/command` | EppCommandRoot | HTTP address of the command endpoints including schema and port.
117-
| `epp_error_url` | `https://example.com/epp/error` | EppErrorRoot | HTTP address of the error endpoints including schema and port.
118-
| `cacertfile_path` | `/opt/ca/ca.crt.pem` | SSLCACertificateFile | Where is the client root CA located. Can be inside apps/epp_proxy/priv or absolute path.
119-
| `certfile_path` | `/opt/ca/server.crt.pem` | SSLCertificateFile | Where is the server certificate located. Can be inside apps/epp_proxy/priv or absolute path.
120-
| `keyfile_path` | `/opt/ca/server.key.pem` | SSLCertificateKeyFile | Where is the server key located. Can be inside apps/epp_proxy/priv or absolute path.
121-
| `crlfile_path` | `/opt/ca/crl.pem` | SSLCARevocationFile | Where is the CRL file located. Can be inside apps/epp_proxy/priv or absolute path. When not set, not CRL check is performed.
110+
| Variable name | Expected values | Apache equivalent | Definition
111+
-------------------------|------------------------------------|-----------------------|--------------------------------------------
112+
| `dev_mode` | `true`, `false` | None | Enables TCP access without TLS.
113+
| `tls_port` | `700` | Listen | At which port should we open a TLS socket. Default is 700.
114+
| `tcp_port` | `70000` | Listen | At which port should we open a TCP socket. Only in `dev_mode`.
115+
| `epp_session_url` | `https://example.com/epp/session` | EppSessionRoot | HTTP address of the session endpoints including schema and port.
116+
| `epp_command_url` | `https://example.com/epp/command` | EppCommandRoot | HTTP address of the command endpoints including schema and port.
117+
| `epp_error_url` | `https://example.com/epp/error` | EppErrorRoot | HTTP address of the error endpoints including schema and port.
118+
| `require_client_certs` | `true`, `false` | None | Allows client to connect to epp_proxy without client certificate using TLS.
119+
| `cacertfile_path` | `/opt/ca/ca.crt.pem` | SSLCACertificateFile | Where is the client root CA located. Can be inside apps/epp_proxy/priv or absolute path.
120+
| `certfile_path` | `/opt/ca/server.crt.pem` | SSLCertificateFile | Where is the server certificate located. Can be inside apps/epp_proxy/priv or absolute path.
121+
| `keyfile_path` | `/opt/ca/server.key.pem` | SSLCertificateKeyFile | Where is the server key located. Can be inside apps/epp_proxy/priv or absolute path.
122+
| `crlfile_path` | `/opt/ca/crl.pem` | SSLCARevocationFile | Where is the CRL file located. Can be inside apps/epp_proxy/priv or absolute path. When not set, not CRL check is performed.
122123

123124

124125
Migrating from mod_epp

0 commit comments

Comments
 (0)