Skip to content
GitLab
About GitLab
GitLab: the DevOps platform
Explore GitLab
Install GitLab
How GitLab compares
Get started
GitLab docs
GitLab Learn
Pricing
Talk to an expert
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Projects
Groups
Snippets
Sign up now
Login
Sign in
Toggle navigation
Menu
Open sidebar
project
provision
Commits
25f336b7
Commit
25f336b7
authored
Jul 09, 2014
by
Christopher Gervais
Browse files
Stop false-positive warnings when SSL uses a wildcard.
parent
6f86539e
Changes
1
Hide whitespace changes
Inline
Side-by-side
http/Provision/Service/http/ssl.php
View file @
25f336b7
...
...
@@ -54,7 +54,7 @@ class Provision_Service_http_ssl extends Provision_Service_http_public {
}
}
if
(
!
isset
(
$data
[
'ip_address'
]))
{
drush_log
(
dt
(
'No proper IP provided by the frontend for server %servername, using wildcard'
,
array
(
'%servername'
=>
$this
->
server
->
name
)),
'
warning
'
);
drush_log
(
dt
(
'No proper IP provided by the frontend for server %servername, using wildcard'
,
array
(
'%servername'
=>
$this
->
server
->
name
)),
'
info
'
);
$data
[
'ip_address'
]
=
'*'
;
}
if
(
$this
->
context
->
ssl_enabled
==
2
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment