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
9f4a5807
Verified
Commit
9f4a5807
authored
Feb 15, 2021
by
JanThiel
Browse files
Codestyle fixes
parent
ab256189
Changes
1
Hide whitespace changes
Inline
Side-by-side
server/plugins-available/nginx_plugin.inc.php
View file @
9f4a5807
...
...
@@ -821,7 +821,7 @@ class nginx_plugin {
}
// Set the a+r mod to the web_folder.
// Skip this for vhostalias if the web_folder is "web". In this case, everything is setup already from the vhost setup
if
(
$data
[
'new'
][
'type'
]
!=
'vhostalias'
||
$web_folder
!=
"
web
"
)
{
if
(
$data
[
'new'
][
'type'
]
!=
'vhostalias'
||
$web_folder
!=
'
web
'
)
{
$app
->
system
->
exec_safe
(
'chmod -R a+r ?'
,
$data
[
'new'
][
'document_root'
]
.
'/'
.
$web_folder
.
'/'
);
}
...
...
@@ -879,7 +879,7 @@ class nginx_plugin {
if
(
$this
->
action
==
'insert'
||
$data
[
"new"
][
"system_user"
]
!=
$data
[
"old"
][
"system_user"
])
{
// Chown and chmod the directories below the document root
// Skip this for vhostalias if the web_folder is "web". In this case, everything is setup already from the vhost setup
if
(
$data
[
'new'
][
'type'
]
!=
'vhostalias'
||
$web_folder
!=
"
web
"
)
{
if
(
$data
[
'new'
][
'type'
]
!=
'vhostalias'
||
$web_folder
!=
'
web
'
)
{
$app
->
system
->
exec_safe
(
'chown -R ?:? ?'
,
$username
,
$groupname
,
$data
[
'new'
][
'document_root'
]
.
'/'
.
$web_folder
);
}
// The document root itself has to be owned by root in normal level and by the web owner in security level 20
...
...
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