An open API service indexing awesome lists of open source software.

https://github.com/bpetit/ansible-role-nextcloud

Ansible role to install and configure a simple nextcloud instance.
https://github.com/bpetit/ansible-role-nextcloud

Last synced: 2 months ago
JSON representation

Ansible role to install and configure a simple nextcloud instance.

Awesome Lists containing this project

README

          

nextcloud
=========

Ansible role to deploy and configure a simple nextcloud instance.

Requirements
------------

You need a working mariaDB/MySQL service to talk to.

Role Variables
--------------

nextcloud_download_url: https://download.nextcloud.com/server/releases/
nextcloud_version: 15.0.0
nextcloud_tarball_url: "{{ nextcloud_download_url }}/nextcloud-{{ nextcloud_version }}.zip"
nextcloud_tarball_tmp_path: "/tmp/nextcloud-{{ nextcloud_version }}.zip"
nextcloud_tarball_md5_sum_url: "{{ nextcloud_download_url }}/nextcloud-{{ nextcloud_version }}.zip.md5"
nextcloud_install_path: "/var/www/nextcloud"
nextcloud_system_user: www-data
nextcloud_system_group: www-data
nextcloud_server_name: nextcloud.example.org # CHANGE ME
nextcloud_http_port: 80

Dependencies
------------

This role needs no specific ansible role to work.

Example Playbook
----------------

- hosts: servers
roles:
- { role: nextcloud }

License
-------

BSD

Author Information
------------------

Benoit Petit