Install and configure Nextcloud on your system.
GitHub | GitLab | Quality | Downloads | Version |
---|---|---|---|---|
This example is taken from molecule/default/converge.yml
and is tested on each push, pull request and release.
---
- name: converge
hosts: all
become: yes
gather_facts: yes
roles:
- role: robertdebock.httpd
- role: robertdebock.nextcloud
nextcloud_apps:
- name: richdocumentscode
nextcloud_settings:
- name: max_chunk_size
section: files
value: 0
The machine needs to be prepared. In CI this is done using molecule/default/prepare.yml
:
---
- name: prepare
hosts: all
become: yes
gather_facts: no
roles:
- role: robertdebock.bootstrap
- role: robertdebock.core_dependencies
- role: robertdebock.cron
- role: robertdebock.buildtools
- role: robertdebock.epel
- role: robertdebock.python_pip
- role: robertdebock.openssl
openssl_items:
- name: apache-httpd
common_name: "{{ ansible_fqdn }}"
- role: robertdebock.selinux
- role: robertdebock.httpd
- role: robertdebock.redis
- name: continue prepare with facts
hosts: all
become: yes
gather_facts: yes
pre_tasks:
- name: include remi
ansible.builtin.include_role:
name: robertdebock.remi
when:
- ansible_distribution != "Fedora"
vars:
remi_enabled_repositories:
- php74
roles:
- role: robertdebock.php
php_memory_limit: 512M
php_upload_max_filesize: 8G
php_post_max_size: 8G
- role: robertdebock.php_fpm
- role: robertdebock.mysql
mysql_databases:
- name: nextcloud
encoding: utf8
collation: utf8_bin
mysql_users:
- name: nextcloud
password: N3x4Cl0ud
priv: "nextcloud.*:ALL"
Also see a full explanation and example on how to use these roles.
The default values for the variables are set in defaults/main.yml
:
---
# defaults file for nextcloud
# The version of nextcloud to install.
nextcloud_version: "23.0.0"
# The domain under which this server will be available. For example:
# "localhost" or "nextcloud.example.com". Does not include protocol identifier,
# (https://) or directories. (/nextcloud)
nextcloud_domain_url: "{{ ansible_default_ipv4.address | default(ansible_all_ipv4_addresses[0] ) }}"
# Database connection details.
nextcloud_database_name: nextcloud
nextcloud_database_user: nextcloud
nextcloud_database_pass: N3x4Cl0ud
nextcloud_database_host: "127.0.0.1"
nextcloud_admin_user: admin
nextcloud_admin_pass: N3x4Cl0ud
# You can install applications into NextCloud.
# nextcloud_apps:
# - name: richdocumentscode
# You can set parameters for nextcloud
# nextcloud_settings:
# - name: max_chunk_size
# section: files
# value: 0
# You can install nextcloud on a location of your choice. Distribution specific
# destinations are set in `vars/main.yml`, which are looked-up here. Feel free
# to overwrite the destination to some destination you prefer. For example:
#
# nextcloud_destination: /opt
#
nextcloud_destination: "{{ _nextcloud_destination[ansible_distribution] | default(_nextcloud_destination['default'] ) }}"
- pip packages listed in requirements.txt.
The following roles are used to prepare a system. You can prepare your system in another way.
This role is a part of many compatible roles. Have a look at the documentation of these roles for further information.
Here is an overview of related roles:
This role has been tested on these container images:
container | tags |
---|---|
debian | bullseye |
el | 8 |
fedora | all |
opensuse | all |
ubuntu | focal |
The minimum version of Ansible required is 2.10, tests have been done to:
- The previous version.
- The current version.
- The development version.
Some roles can't run on a specific distribution or version. Here are some exceptions.
variation | reason |
---|---|
fedora:32 | nothing provides libzip(x86-64) >= 1.7.3 needed by php-pecl-zip-1.19.1-1.fc32.remi.7.4.x86_64 |
fedora:rawhide | dependent role "remi" does not support fedora:rawhide. |
debian:bullseye | Package 'php-dom' (and 'php-posix') has no installation candidate |
If you find issues, please register them in GitHub
Apache-2.0
Please consider sponsoring me.