Nextcloud: Configure PHP cli via role
This commit is contained in:
parent
9cafdd4bc8
commit
3fa449e628
3 changed files with 12 additions and 13 deletions
12
README.md
12
README.md
|
@ -45,6 +45,18 @@ nextcloud_instances:
|
||||||
```
|
```
|
||||||
|
|
||||||
# Ausführen der Rolle
|
# Ausführen der Rolle
|
||||||
|
## Vorbereitungen
|
||||||
|
|
||||||
|
Nextcloud lässt sich per Kommandozeile mittels [occ](https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/occ_command.html#file-operations-label)
|
||||||
|
recht umfangreich konfigurieren und steuern. Wichtig ist, dass die PHP-Variable `apc.enable_cli: 1` gesetzt ist.
|
||||||
|
Dies übernimmt die Rolle `senselab.php` passieren, wenn in den ensprechenden `host_vars` des Nextcloud-Servers folgendes gesetzt ist:
|
||||||
|
```YAML
|
||||||
|
php_cli_config:
|
||||||
|
apc.enable_cli: 1
|
||||||
|
memory_limit: 512M
|
||||||
|
...
|
||||||
|
```
|
||||||
|
|
||||||
## Neue Nextcloud-Instanz anlegen
|
## Neue Nextcloud-Instanz anlegen
|
||||||
|
|
||||||
- Trage die Informationen zur neuen Instanz in die entsprechende `host_vars`-Datei unter `nextcloud_instances` ein:
|
- Trage die Informationen zur neuen Instanz in die entsprechende `host_vars`-Datei unter `nextcloud_instances` ein:
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
apc.enable_cli=1
|
|
|
@ -1,16 +1,4 @@
|
||||||
---
|
---
|
||||||
- name: "Common | Kopiere PHP-CLI-Konfiguration"
|
|
||||||
ansible.builtin.copy:
|
|
||||||
src: 30-sao-nextcloud.ini
|
|
||||||
dest: "/etc/php/{{ php_version.stdout }}/mods-available/sao-nextcloud.ini"
|
|
||||||
mode: "0644"
|
|
||||||
|
|
||||||
- name: "Common | Aktiviere PHP-CLI-Konfiguration"
|
|
||||||
ansible.builtin.file:
|
|
||||||
src: "/etc/php/{{ php_version.stdout }}/mods-available/sao-nextcloud.ini"
|
|
||||||
dest: "/etc/php/{{ php_version.stdout }}/cli/conf.d/30-sao-nextcloud.ini"
|
|
||||||
state: link
|
|
||||||
|
|
||||||
- name: "Common | Ermittle aktuelle Nextcloud-Version"
|
- name: "Common | Ermittle aktuelle Nextcloud-Version"
|
||||||
ansible.builtin.shell:
|
ansible.builtin.shell:
|
||||||
cmd: curl -sL "{{ nextcloud_github_api_url }}" | jq -r ".tag_name" | cut -d 'v' -f2
|
cmd: curl -sL "{{ nextcloud_github_api_url }}" | jq -r ".tag_name" | cut -d 'v' -f2
|
||||||
|
|
Loading…
Reference in a new issue