OpenSSL
From Yate Documentation
(Difference between revisions)
(One intermediate revision by one user not shown) | |||
Line 7: | Line 7: | ||
openssl.conf | openssl.conf | ||
− | |||
; This file keeps the configuration of the openssl module | ; This file keeps the configuration of the openssl module | ||
Line 32: | Line 31: | ||
; key: string: Optional certificate key file name | ; key: string: Optional certificate key file name | ||
;key= | ;key= | ||
+ | |||
+ | '''See also''' | ||
+ | |||
+ | * [[Modules]] | ||
+ | |||
+ | [[Category:SSL]] [[Category:Security]] |
Latest revision as of 13:23, 4 November 2013
This module provides support for secure sockets based on the OpenSSL library.
[edit] Configuration
Configuration is required only for server sockets that need having a certificate configured. The parameters of the SSL socket to create are specified in the socket.ssl message.
openssl.conf
; This file keeps the configuration of the openssl module ; Each section, except for 'general' configures a server context [general] ;[server_context] ; This section configures a SSL server context ; enable: boolean: Enable or disable the context ; Defaults to yes ;enable=yes ; domains: string: Comma separated list of domains the context will be used for ; A subdomain wildcard can be specified for a given domain, e.g. ; *.null.ro will match any null.ro subdomains (including the 'null.ro' domain) ;domains= ; certificate: string: The name of the file containing the certificate for the context ; This parameter is required ;certificate= ; key: string: Optional certificate key file name ;key=
See also