Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Registrati
Accedi
ka
/
ansible-role-php
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
fpm
master
Markus Katharina Brechtel
4 anni fa
parent
46875a8cc5
commit
52a31ed98c
5 ha cambiato i file
con
16 aggiunte
e
1 eliminazioni
Visualizzazione separata
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
Vedi File
@@ -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
Vedi File
@@ -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
Vedi File
@@ -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
Vedi File
@@ -0,0 +1,6 @@
---
- name: php-fpm debian packages
apt:
pkg:
- php{{php_version}}-fpm
+ 0
- 1
tasks/setup.yaml
Vedi File
@@ -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
Write
Preview
Loading…
Annulla
Salva