Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
Zvonimir
ISPConfig 3
Commits
d2c5ed74
Commit
d2c5ed74
authored
Apr 09, 2014
by
Till Brehm
Browse files
- Changed php-fpm-socket listen mode to 0600.
- Enable php-fpm socket mode as default.
parent
465f2bbf
Changes
3
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_0073.sql
0 → 100644
View file @
d2c5ed74
ALTER
TABLE
`client_template`
ADD
`limit_backup`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'y'
AFTER
`limit_webdav_user`
;
ALTER
TABLE
`client`
ADD
`limit_backup`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'y'
AFTER
`limit_webdav_user`
;
ALTER
TABLE
`web_domain`
CHANGE
`php_fpm_use_socket`
`php_fpm_use_socket`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'y'
;
install/sql/ispconfig3.sql
View file @
d2c5ed74
...
...
@@ -204,6 +204,7 @@ CREATE TABLE `client` (
`limit_shell_user`
int
(
11
)
NOT
NULL
DEFAULT
'0'
,
`ssh_chroot`
varchar
(
255
)
NOT
NULL
DEFAULT
'no,jailkit,ssh-chroot'
,
`limit_webdav_user`
int
(
11
)
NOT
NULL
DEFAULT
'0'
,
`limit_backup`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'y'
,
`limit_aps`
int
(
11
)
NOT
NULL
DEFAULT
'-1'
,
`default_dnsserver`
int
(
11
)
unsigned
NOT
NULL
DEFAULT
'1'
,
`db_servers`
blob
NOT
NULL
,
...
...
@@ -313,6 +314,7 @@ CREATE TABLE `client_template` (
`limit_shell_user`
int
(
11
)
NOT
NULL
default
'0'
,
`ssh_chroot`
varchar
(
255
)
NOT
NULL
DEFAULT
'no'
,
`limit_webdav_user`
int
(
11
)
NOT
NULL
default
'0'
,
`limit_backup`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'y'
,
`limit_aps`
int
(
11
)
NOT
NULL
DEFAULT
'-1'
,
`limit_dns_zone`
int
(
11
)
NOT
NULL
default
'-1'
,
`limit_dns_slave_zone`
int
(
11
)
NOT
NULL
default
'-1'
,
...
...
@@ -1852,7 +1854,7 @@ CREATE TABLE `web_domain` (
`allow_override`
varchar
(
255
)
NOT
NULL
default
'All'
,
`apache_directives`
mediumtext
,
`nginx_directives`
mediumtext
,
`php_fpm_use_socket`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'
n
'
,
`php_fpm_use_socket`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'
y
'
,
`pm`
enum
(
'static'
,
'dynamic'
,
'ondemand'
)
NOT
NULL
DEFAULT
'dynamic'
,
`pm_max_children`
int
(
11
)
NOT
NULL
DEFAULT
'10'
,
`pm_start_servers`
int
(
11
)
NOT
NULL
DEFAULT
'2'
,
...
...
server/conf/php_fpm_pool.conf.master
View file @
d2c5ed74
...
...
@@ -8,7 +8,7 @@ listen.allowed_clients = 127.0.0.1
listen = <tmpl_var name='fpm_socket'>
listen.owner = <tmpl_var name='fpm_user'>
listen.group = <tmpl_var name='fpm_group'>
listen.mode = 06
6
0
listen.mode = 06
0
0
</tmpl_if>
user = <tmpl_var name='fpm_user'>
...
...
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