mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 18:49:21 -07:00
Yakkety Yak configs
This commit is contained in:
parent
fa4b66f8c7
commit
8969cad0c8
128 changed files with 6699 additions and 0 deletions
18
install/ubuntu/16.10/templates/web/php-fpm/default.tpl
Normal file
18
install/ubuntu/16.10/templates/web/php-fpm/default.tpl
Normal file
|
@ -0,0 +1,18 @@
|
|||
[%backend%]
|
||||
listen = 127.0.0.1:%backend_port%
|
||||
listen.allowed_clients = 127.0.0.1
|
||||
|
||||
user = %user%
|
||||
group = %user%
|
||||
|
||||
pm = dynamic
|
||||
pm.max_children = 50
|
||||
pm.start_servers = 3
|
||||
pm.min_spare_servers = 2
|
||||
pm.max_spare_servers = 10
|
||||
|
||||
env[HOSTNAME] = $HOSTNAME
|
||||
env[PATH] = /usr/local/bin:/usr/bin:/bin
|
||||
env[TMP] = /tmp
|
||||
env[TMPDIR] = /tmp
|
||||
env[TEMP] = /tmp
|
13
install/ubuntu/16.10/templates/web/php-fpm/no-php.tpl
Normal file
13
install/ubuntu/16.10/templates/web/php-fpm/no-php.tpl
Normal file
|
@ -0,0 +1,13 @@
|
|||
;[%backend%]
|
||||
;user = %user%
|
||||
;group = %user%
|
||||
;listen = /dev/null
|
||||
|
||||
;listen.owner = %user%
|
||||
;listen.group = nginx
|
||||
|
||||
;pm = dynamic
|
||||
;pm.max_children = 50
|
||||
;pm.start_servers = 3
|
||||
;pm.min_spare_servers = 2
|
||||
;pm.max_spare_servers = 10
|
21
install/ubuntu/16.10/templates/web/php-fpm/socket.tpl
Normal file
21
install/ubuntu/16.10/templates/web/php-fpm/socket.tpl
Normal file
|
@ -0,0 +1,21 @@
|
|||
[%backend%]
|
||||
listen = /var/run/php/%backend%.sock
|
||||
listen.allowed_clients = 127.0.0.1
|
||||
|
||||
user = %user%
|
||||
group = %user%
|
||||
|
||||
listen.owner = %user%
|
||||
listen.group = www-data
|
||||
|
||||
pm = dynamic
|
||||
pm.max_children = 50
|
||||
pm.start_servers = 3
|
||||
pm.min_spare_servers = 2
|
||||
pm.max_spare_servers = 10
|
||||
|
||||
env[HOSTNAME] = $HOSTNAME
|
||||
env[PATH] = /usr/local/bin:/usr/bin:/bin
|
||||
env[TMP] = /tmp
|
||||
env[TMPDIR] = /tmp
|
||||
env[TEMP] = /tmp
|
Loading…
Add table
Add a link
Reference in a new issue