Compare commits

...

16 Commits

Author SHA1 Message Date
6504e0d7f8 update(server): bump version to 27.1.6 2024-02-04 10:19:35 +01:00
68fac3624b update(server): bump version to 27.1.1 2023-10-08 16:34:40 +02:00
f8861c266f update(server): bump version to 26.0.7 2023-10-08 15:55:23 +02:00
d2e870389f update(server): bump version to 25.0.12 2023-10-08 15:50:45 +02:00
0f671549d5 chore: add collection runtime metadata 2023-07-19 17:11:40 +02:00
c045b0586e chore(nginx-fpm-proxy)!: rename role to nginx_fpm_proxy 2023-07-19 17:11:08 +02:00
4e2757f649 chore(ldap-user-backend)!: rename role to ldap_user_backend 2023-07-19 17:07:59 +02:00
80ec87c7f4 chore: update ansible collection metadata 2023-07-17 21:07:45 +02:00
e079c5d48b update(nginx-fpm-proxy): bump version to 1.23.3 2023-02-09 16:30:26 +01:00
acbb6bfef7 update(server): bump version to 25.0.3 2023-02-09 16:30:21 +01:00
0368d71410 chore(server): adjust folder permissions to be idempotent, formatting 2023-02-09 16:30:11 +01:00
c7fd45b47f update(server): bump version to 24.0.9 2023-02-09 16:07:21 +01:00
8ff2a5878e update(nginx-fpm-proxy): update to 1.23.2 2022-10-31 10:47:20 +01:00
b02037f743 update(server): bump version to 24.0.6 2022-10-31 10:46:57 +01:00
63a291121a update(server): bump version to 24.0.4 2022-09-04 10:39:55 +02:00
69d76f3342 update(server): bump version to 24.0.3 2022-07-24 09:06:25 +02:00
17 changed files with 22 additions and 13 deletions

View File

@ -1,15 +1,14 @@
namespace: finallycoffee
name: nextcloud
version: 0.5.0
version: 0.5.1
readme: README.md
authors:
- Johanna Dorothea Reichmann <transcaffeine@finallycoffee.eu>
- transcaffeine <transcaffeine@finally.coffee>
description: Installing and configuring nextcloud (and related apps/services) using docker
dependencies:
"community.docker": "^1.10.0"
license:
- CNPLv7+
license_file: LICENSE.md
build_ignore:
- '*.tar.gz'
repository: https://git.finallycoffee.eu/finallycoffee.eu/nextcloud
issues: https://git.finallycoffee.eu/finallycoffee.eu/nextcloud/issues
repository: https://git.finally.coffee/finallycoffee/nextcloud
issues: https://git.finally.coffee/finallycoffee/nextcloud/issues

3
meta/runtime.yml Normal file
View File

@ -0,0 +1,3 @@
---
requires_ansible: ">=2.12"

View File

@ -1,6 +1,6 @@
---
nextcloud_nginx_version: "1.21.3"
nextcloud_nginx_version: "1.23.3"
nextcloud_nginx_basepath: /opt/nextcloud-nginx
nextcloud_nginx_config: "{{ nextcloud_nginx_basepath }}/nextcloud.conf"
nextcloud_nginx_servernames: ~

View File

@ -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`.

View File

@ -1,6 +1,6 @@
---
nextcloud_version: 24.0.2
nextcloud_version: 27.1.6
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