Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Registro
Iniciar sesión
ka
/
ansible-role-nextcloud
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
php opcache
master
Markus Katharina Brechtel
hace 7 años
padre
246a98472f
commit
acf4ad266a
Se han
modificado 3 ficheros
con
17 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+2
-0
tasks/main.yml
+8
-0
tasks/php-opcache.yml
+7
-0
templates/php-opcache.conf.j2
+ 2
- 0
tasks/main.yml
Ver fichero
@@ -2,6 +2,8 @@
- include: setup_Debian.yml
- include: php-opcache.yml
- include: reset.yml
when: nextcloud_state == "reinstalled"
+ 8
- 0
tasks/php-opcache.yml
Ver fichero
@@ -0,0 +1,8 @@
---
- name: enable php opcache
template:
src: php-opcache.conf.j2
dest: /etc/php/7.0/apache2/conf.d/opcache.ini
notify: restart apache2
+ 7
- 0
templates/php-opcache.conf.j2
Ver fichero
@@ -0,0 +1,7 @@
opcache.enable=1
opcache.enable_cli=1
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=10000
opcache.memory_consumption=128
opcache.save_comments=1
opcache.revalidate_freq=1
Escribir
Vista previa
Cargando…
Cancelar
Guardar