Wiki: Fix oauth, create role from playbook
This commit is contained in:
parent
73db1dd077
commit
804becdd31
9 changed files with 115 additions and 46 deletions
15
playbooks/roles/dokuwiki/templates/php-fpm-dokuwiki.conf
Normal file
15
playbooks/roles/dokuwiki/templates/php-fpm-dokuwiki.conf
Normal file
|
@ -0,0 +1,15 @@
|
|||
[dokuwiki]
|
||||
user = {{ dokuwiki__php_user }}
|
||||
group = {{ dokuwiki__php_user }}
|
||||
listen = /var/run/php/php-fpm-dokuwiki.sock
|
||||
listen.owner = {{ dokuwiki__nginx_user }}
|
||||
listen.group = {{ dokuwiki__nginx_user }}
|
||||
php_admin_value[disable_functions] = exec,passthru,shell_exec,system
|
||||
php_admin_flag[allow_url_fopen] = on
|
||||
; Choose how the process manager will control the number of child processes.
|
||||
pm = dynamic
|
||||
pm.max_children = 75
|
||||
pm.start_servers = 10
|
||||
pm.min_spare_servers = 5
|
||||
pm.max_spare_servers = 20
|
||||
pm.process_idle_timeout = 10s
|
Loading…
Add table
Add a link
Reference in a new issue