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
Webslice
ISPConfig 3
Commits
1b0ffe4e
Commit
1b0ffe4e
authored
Dec 17, 2018
by
Marius Burkard
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'patch-2' into 'master'
Patch 2 See merge request
ispconfig/ispconfig3!836
parents
d93e2d63
89a6f6ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
install/lib/installer_base.lib.php
install/lib/installer_base.lib.php
+3
-3
No files found.
install/lib/installer_base.lib.php
View file @
1b0ffe4e
...
...
@@ -2017,7 +2017,7 @@ class installer_base {
$content
=
str_replace
(
'{use_socket}'
,
$use_socket
,
$content
);
// SSL in apps vhost is off by default. Might change later.
$content
=
str_replace
(
'{ssl_on}'
,
'
off
'
,
$content
);
$content
=
str_replace
(
'{ssl_on}'
,
''
,
$content
);
$content
=
str_replace
(
'{ssl_comment}'
,
'#'
,
$content
);
// Fix socket path on PHP 7 systems
...
...
@@ -2450,11 +2450,11 @@ class installer_base {
$content
=
str_replace
(
'{vhost_port}'
,
$conf
[
'nginx'
][
'vhost_port'
],
$content
);
if
(
is_file
(
$install_dir
.
'/interface/ssl/ispserver.crt'
)
&&
is_file
(
$install_dir
.
'/interface/ssl/ispserver.key'
))
{
$content
=
str_replace
(
'{ssl_on}'
,
'
on
'
,
$content
);
$content
=
str_replace
(
'{ssl_on}'
,
'
ssl
'
,
$content
);
$content
=
str_replace
(
'{ssl_comment}'
,
''
,
$content
);
$content
=
str_replace
(
'{fastcgi_ssl}'
,
'on'
,
$content
);
}
else
{
$content
=
str_replace
(
'{ssl_on}'
,
'
off
'
,
$content
);
$content
=
str_replace
(
'{ssl_on}'
,
''
,
$content
);
$content
=
str_replace
(
'{ssl_comment}'
,
'#'
,
$content
);
$content
=
str_replace
(
'{fastcgi_ssl}'
,
'off'
,
$content
);
}
...
...
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