Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Arch Linux
infrastructure
Commits
e28df1c7
Verified
Commit
e28df1c7
authored
Mar 03, 2018
by
Florian Pritz
Browse files
php: Load opcache extension
Signed-off-by:
Florian Pritz
<
bluewind@xinu.at
>
parent
6888d2ec
Changes
3
Hide whitespace changes
Inline
Side-by-side
playbooks/apollo.yml
View file @
e28df1c7
...
...
@@ -36,7 +36,7 @@
mariadb_innodb_file_per_table
:
True
,
tags
:
[
"
mariadb"
]
}
-
{
role
:
sudo
,
tags
:
[
'
sudo'
]
}
-
{
role
:
uwsgi
,
tags
:
[
'
uwsgi'
]
}
-
{
role
:
php-fpm
,
php_extensions
:
[
'
bcmath'
,
'
curl'
,
'
gd'
,
'
iconv'
,
'
intl'
,
'
mysqli'
,
'
pdo_pgsql'
,
'
pgsql'
,
'
sockets'
,
'
zip'
],
tags
:
[
"
php-fpm"
]
}
-
{
role
:
php-fpm
,
php_extensions
:
[
'
bcmath'
,
'
curl'
,
'
gd'
,
'
iconv'
,
'
intl'
,
'
mysqli'
,
'
pdo_pgsql'
,
'
pgsql'
,
'
sockets'
,
'
zip'
],
zend_extensions
:
[
'
opcache'
],
tags
:
[
"
php-fpm"
]
}
-
{
role
:
memcached
,
tags
:
[
'
memcached'
]
}
-
{
role
:
archweb
,
tags
:
[
"
archweb"
]
}
-
{
role
:
security_tracker
,
security_tracker_domain
:
"
security.archlinux.org"
,
security_tracker_dir
:
"
/srv/http/security-tracker"
,
tags
:
[
"
security_tracker"
]
}
...
...
roles/php-fpm/defaults/main.yml
View file @
e28df1c7
...
...
@@ -2,3 +2,6 @@
php_extensions
:
-
curl
-
zip
zend_extensions
:
-
opcache
roles/php-fpm/templates/php.ini.j2
View file @
e28df1c7
...
...
@@ -887,6 +887,10 @@ default_socket_timeout = 60
extension={{ ext }}.so
{% endfor %}
{% for ext in zend_extensions %}
zend_extension={{ ext }}.so
{% endfor %}
;;;;;;;;;;;;;;;;;;;
; Module Settings ;
;;;;;;;;;;;;;;;;;;;
...
...
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