Compare commits
2 Commits
server-24.
...
server-25.
Author | SHA1 | Date | |
---|---|---|---|
acbb6bfef7
|
|||
0368d71410
|
@ -12,3 +12,10 @@ so the host file permissions remain comprehensible.
|
||||
- `nextcloud_socket_path`: Setting this (to, for example, `{{ nextcloud_basepath }}/socket`),
|
||||
will make FPM listen on `{{ nextcloud_socket_path }}/nextcloud.sock` on the host, enabling
|
||||
you to use FPM to interface with nextcloud.
|
||||
|
||||
### Redis over UNIX-Socket
|
||||
|
||||
Set `REDIS_HOST` to a path in the container where the socket is mapped using
|
||||
`nextcloud_container_extra_environment`. Also set `REDIS_HOST_PORT` to 0
|
||||
explicitely, as `redis.config.php` will set it to `null` otherwise, resulting
|
||||
in an exception. Set your redis password in `REDIS_HOST_PASSWORD`.
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
|
||||
nextcloud_version: 24.0.9
|
||||
nextcloud_version: 25.0.3
|
||||
nextcloud_user: nextcloud
|
||||
nextcloud_basepath: /opt/nextcloud
|
||||
nextcloud_config_path: "{{ nextcloud_basepath }}/config"
|
||||
@ -47,11 +47,11 @@ nextcloud_paths:
|
||||
- path: "{{ nextcloud_config_path }}"
|
||||
mode: "0755"
|
||||
owner: "{{ nextcloud_user_info.uid | default(nextcloud_user) }}"
|
||||
group: "root"
|
||||
group: root
|
||||
- path: "{{ nextcloud_data_path }}"
|
||||
mode: "0755"
|
||||
owner: "{{ nextcloud_user_info.uid | default(nextcloud_user) }}"
|
||||
group: "{{ nextcloud_user_info.uid|default(nextcloud_user) }}"
|
||||
group: "{{ nextcloud_user_info.group | default(nextcloud_user) }}"
|
||||
- path: "{{ nextcloud_fpm_config_path }}"
|
||||
mode: "0750"
|
||||
owner: root
|
||||
|
Reference in New Issue
Block a user