Ce site fonctionne mieux avec JavaScript.
Accueil
Explorateur
Aide
S'inscrire
Connexion
ka
/
ansible-role-php
Suivre
1
Ajouter aux favoris
0
Bifurcation
0
Code
Tickets
0
Demandes d'ajout
0
Versions
0
Wiki
Activité
Parcourir la source
fpm
master
Markus Katharina Brechtel
il y a 4 ans
Parent
46875a8cc5
révision
52a31ed98c
5 fichiers modifiés
avec
16 ajouts
et
1 suppressions
Vue séparée
Option de Diff
Voir les Statistiques
Télécharger le Fichier Patch
Télécharger le Fichier des Différences
+2
-0
defaults/main.yaml
+5
-0
tasks/apache.yaml
+3
-0
tasks/main.yaml
+6
-0
tasks/php-fpm.yaml
+0
-1
tasks/setup.yaml
+ 2
- 0
defaults/main.yaml
Voir le fichier
@@ -1,3 +1,5 @@
---
php_sury_repo: false
php_configure_opcache: false
php_apache_module: false
php_fpm_install: false
+ 5
- 0
tasks/apache.yaml
Voir le fichier
@@ -1,5 +1,10 @@
---
- name: php apache module debian packages
apt:
pkg:
- libapache2-mod-php{{php_version}}
- name: find apache php modules which are not of the selected version
find:
path: /etc/apache2/mods-enabled/
+ 3
- 0
tasks/main.yaml
Voir le fichier
@@ -2,5 +2,8 @@
- import_tasks: setup.yaml
- import_tasks: apache.yaml
when: php_apache_module
- import_tasks: opcache.yaml
when: php_configure_opcache
- import_tasks: php-fpm.yaml
when: php_fpm_install
+ 6
- 0
tasks/php-fpm.yaml
Voir le fichier
@@ -0,0 +1,6 @@
---
- name: php-fpm debian packages
apt:
pkg:
- php{{php_version}}-fpm
+ 0
- 1
tasks/setup.yaml
Voir le fichier
@@ -44,7 +44,6 @@
apt:
pkg:
- php{{php_version}}-cli
- libapache2-mod-php{{php_version}}
- php{{php_version}}-xml
- php{{php_version}}-json
- php{{php_version}}-mbstring
Écrire
Aperçu
Chargement…
Annuler
Enregistrer