apache: Add support for port based SSL virtual hosts
This commit is contained in:
parent
379ca62a5f
commit
53a0422843
4 changed files with 22 additions and 8 deletions
|
@ -184,7 +184,7 @@ class apache::debian::sslserver inherits apache::debian::common {
|
|||
}
|
||||
|
||||
|
||||
define apache::debian::sslsite($first, $hsts, $ipaddr, $root,
|
||||
define apache::debian::sslsite($first, $hsts, $ipaddr, $port, $root,
|
||||
$ssl_cert, $ssl_key, $ssl_chain, $proxy) {
|
||||
|
||||
if $name == "default" {
|
||||
|
|
|
@ -305,6 +305,18 @@ define apache::sslsite($first=false, $hsts=false, $ipaddr="_default_", $root="",
|
|||
include apache::mod::headers
|
||||
}
|
||||
|
||||
if $name =~ /:([0-9]+)$/ {
|
||||
$port = $1
|
||||
if ! defined(Apache::Configfile["listen_${port}.conf"]) {
|
||||
apache::configfile { "listen_${port}.conf":
|
||||
http => false,
|
||||
content => "Listen ${port}\n",
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$port = "443"
|
||||
}
|
||||
|
||||
case $::operatingsystem {
|
||||
"debian","ubuntu": {
|
||||
$apache_ssldir = "/etc/ssl"
|
||||
|
@ -312,6 +324,7 @@ define apache::sslsite($first=false, $hsts=false, $ipaddr="_default_", $root="",
|
|||
first => $first,
|
||||
hsts => $hsts,
|
||||
ipaddr => $ipaddr,
|
||||
port => $port,
|
||||
root => $root,
|
||||
ssl_cert => $ssl_cert,
|
||||
ssl_key => $ssl_key,
|
||||
|
@ -326,6 +339,7 @@ define apache::sslsite($first=false, $hsts=false, $ipaddr="_default_", $root="",
|
|||
first => $first,
|
||||
hsts => $hsts,
|
||||
ipaddr => $ipaddr,
|
||||
port => $port,
|
||||
root => $root,
|
||||
ssl_cert => $ssl_cert,
|
||||
ssl_key => $ssl_key,
|
||||
|
|
|
@ -223,7 +223,7 @@ class apache::redhat::sslserver {
|
|||
}
|
||||
|
||||
|
||||
define apache::redhat::sslsite($first, $hsts, $ipaddr, $root,
|
||||
define apache::redhat::sslsite($first, $hsts, $ipaddr, $port, $root,
|
||||
$ssl_cert, $ssl_key, $ssl_chain, $proxy) {
|
||||
|
||||
if $name == "default" {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<VirtualHost <%= @ipaddr %>:443>
|
||||
<VirtualHost <%= @ipaddr %>:<%= @port %>>
|
||||
|
||||
# General setup for the virtual host, inherited from global configuration
|
||||
ServerName <%= @site_fqdn %>:443
|
||||
ServerName <%= @site_fqdn %>
|
||||
|
||||
# Use separate log files for the SSL virtual host; note that LogLevel
|
||||
# is not inherited from httpd.conf.
|
||||
|
|
Loading…
Add table
Reference in a new issue