Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
ISPConfig 3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vítězslav Dvořák
ISPConfig 3
Commits
e2873fd2
Commit
e2873fd2
authored
Sep 15, 2020
by
Till Brehm
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'patch-3' into 'develop'
Missing -d $hostname See merge request
ispconfig/ispconfig3!1171
parents
ab5306f2
3362854d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
install/lib/installer_base.lib.php
install/lib/installer_base.lib.php
+2
-2
No files found.
install/lib/installer_base.lib.php
View file @
e2873fd2
...
...
@@ -2841,9 +2841,9 @@ class installer_base {
// If this is a webserver
if
(
$conf
[
'nginx'
][
'installed'
]
==
true
)
exec
(
"
$le_client
$certonly
$acme_version
--nginx --email postmaster@
$hostname
$renew_hook
"
);
exec
(
"
$le_client
$certonly
$acme_version
--nginx --email postmaster@
$hostname
-d
$hostname
$renew_hook
"
);
elseif
(
$conf
[
'apache'
][
'installed'
]
==
true
)
exec
(
"
$le_client
$certonly
$acme_version
--apache --email postmaster@
$hostname
$renew_hook
"
);
exec
(
"
$le_client
$certonly
$acme_version
--apache --email postmaster@
$hostname
-d
$hostname
$renew_hook
"
);
// Else, it is not webserver, so we use standalone
else
exec
(
"
$le_client
$certonly
$acme_version
--standalone --email postmaster@
$hostname
-d
$hostname
$hook
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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