mirror of
https://github.com/Crocmagnon/ansible.git
synced 2024-11-21 06:48:02 +01:00
This commit is contained in:
parent
cb1a169091
commit
63b4190201
3 changed files with 43 additions and 0 deletions
|
@ -129,6 +129,19 @@ tcl.augendre.info {
|
|||
reverse_proxy localhost:8013
|
||||
}
|
||||
|
||||
cloud-aio.augendre.info {
|
||||
import common_headers
|
||||
reverse_proxy localhost:8014
|
||||
}
|
||||
aio.augendre.info {
|
||||
import common_headers
|
||||
reverse_proxy https://localhost:8015 {
|
||||
transport http {
|
||||
tls_insecure_skip_verify
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
## Ghost blogs (ports >=2368)
|
||||
#########################################################
|
||||
|
||||
|
|
19
playbooks/apps/files/nextcloud-aio/docker-compose.yaml
Normal file
19
playbooks/apps/files/nextcloud-aio/docker-compose.yaml
Normal file
|
@ -0,0 +1,19 @@
|
|||
services:
|
||||
nextcloud:
|
||||
image: nextcloud/all-in-one:latest
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config
|
||||
environment:
|
||||
APACHE_PORT: 8014
|
||||
APACHE_IP_BINDING: 127.0.0.1
|
||||
NEXTCLOUD_DATADIR: /mnt/data/nextcloud-aio/nextcloud_data
|
||||
ports:
|
||||
- "8015:8080"
|
||||
restart: always
|
||||
container_name: nextcloud-aio-mastercontainer
|
||||
init: true
|
||||
|
||||
volumes:
|
||||
nextcloud_aio_mastercontainer:
|
||||
name: nextcloud_aio_mastercontainer
|
11
playbooks/apps/nextcloud-aio.yaml
Normal file
11
playbooks/apps/nextcloud-aio.yaml
Normal file
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
- name: Nextcloud2
|
||||
hosts: servers
|
||||
gather_facts: false
|
||||
tasks:
|
||||
- name: Docker
|
||||
ansible.builtin.include_role:
|
||||
name: docker
|
||||
|
||||
vars:
|
||||
docker_app_name: nextcloud-aio
|
Loading…
Reference in a new issue