Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Helmo
ISPConfig 3
Commits
b74093a0
Commit
b74093a0
authored
Feb 20, 2021
by
Thom
🛠
Browse files
Don't disable SSL for Apps vhost (nginx) by default (
#6017
)
parent
7889e5d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
install/lib/installer_base.lib.php
View file @
b74093a0
...
...
@@ -2687,10 +2687,6 @@ class installer_base {
$content
=
str_replace
(
'{use_tcp}'
,
$use_tcp
,
$content
);
$content
=
str_replace
(
'{use_socket}'
,
$use_socket
,
$content
);
// SSL in apps vhost is off by default. Might change later.
$content
=
str_replace
(
'{ssl_on}'
,
''
,
$content
);
$content
=
str_replace
(
'{ssl_comment}'
,
'#'
,
$content
);
// Fix socket path on PHP 7 systems
if
(
file_exists
(
'/var/run/php/php7.0-fpm.sock'
))
$content
=
str_replace
(
'/var/run/php5-fpm.sock'
,
'/var/run/php/php7.0-fpm.sock'
,
$content
);
if
(
file_exists
(
'/var/run/php/php7.1-fpm.sock'
))
$content
=
str_replace
(
'/var/run/php5-fpm.sock'
,
'/var/run/php/php7.1-fpm.sock'
,
$content
);
...
...
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