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
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
Thomas Heller
ISPConfig 3
Commits
c76e0cc2
Commit
c76e0cc2
authored
Jan 02, 2019
by
Marius Burkard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- fixed typos from merge in previous commit
parent
5bf8371d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
install/install.php
install/install.php
+3
-2
install/update.php
install/update.php
+3
-2
No files found.
install/install.php
View file @
c76e0cc2
...
...
@@ -553,9 +553,10 @@ if($install_mode == 'standard' || strtolower($inst->simple_query('Install ISPCon
}
// Create SSL certs for non-webserver(s)?
if
(
!
file_exists
(
/
usr
/
local
/
ispconfig
/
interface
/
ssl
/
ispserver
.
crt
))
{
if
(
strtolower
(
$inst
->
simple_query
(
'Do you want to create SSL certs for your server?'
,
array
(
'y'
,
'n'
),
'y'
))
==
'y'
)
if
(
!
file_exists
(
'/usr/local/ispconfig/interface/ssl/ispserver.crt'
))
{
if
(
strtolower
(
$inst
->
simple_query
(
'Do you want to create SSL certs for your server?'
,
array
(
'y'
,
'n'
),
'y'
))
==
'y'
)
{
$inst
->
make_ispconfig_ssl_cert
();
}
}
$inst
->
raiseEvent
(
'install_ispconfig::before'
);
...
...
install/update.php
View file @
c76e0cc2
...
...
@@ -504,9 +504,10 @@ if ($inst->install_ispconfig_interface) {
}
// Create SSL certs for non-webserver(s)?
if
(
!
file_exists
(
/
usr
/
local
/
ispconfig
/
interface
/
ssl
/
ispserver
.
crt
))
{
if
(
strtolower
(
$inst
->
simple_query
(
'Do you want to create SSL certs for your server?'
,
array
(
'y'
,
'n'
),
'y'
))
==
'y'
)
if
(
!
file_exists
(
'/usr/local/ispconfig/interface/ssl/ispserver.crt'
))
{
if
(
strtolower
(
$inst
->
simple_query
(
'Do you want to create SSL certs for your server?'
,
array
(
'y'
,
'n'
),
'y'
))
==
'y'
)
{
$inst
->
make_ispconfig_ssl_cert
();
}
}
$inst
->
raiseEvent
(
'install_ispconfig::before'
);
...
...
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