uptime kuma works

This commit is contained in:
Pablo Martin 2025-07-01 17:02:28 +02:00
parent 97ff4b40e3
commit eddde5e53a
4 changed files with 26 additions and 7 deletions

View file

@ -1,7 +1,7 @@
- name: Secure Debian VPS
hosts: vipy
vars_files:
- ../vars.yml
- ../infra_vars.yml
become: true
tasks:

View file

@ -1,7 +1,7 @@
- name: Secure Debian VPS
hosts: vipy
vars_files:
- ../vars.yml
- ../infra_vars.yml
become: true
tasks:

View file

@ -1,4 +1,4 @@
new_user: counterweight
ssh_port: 22
allow_ssh_from: "any"
root_domain: contrapeso.xyz

View file

@ -1,19 +1,22 @@
- name: Deploy Uptime Kuma with Docker Compose and configure Caddy reverse proxy
hosts: vipy
become: yes
vars_files:
- ../infra_vars.yml
vars:
uptime_kuma_dir: /opt/uptime-kuma
uptime_kuma_port: 3001
caddy_sites_dir: /etc/caddy/sites-enabled
uptime_kuma_domain: uptime.example.com # Change to your domain
subdomain: uptime
uptime_kuma_domain: "{{ subdomain }}.{{ root_domain }}"
tasks:
- name: Create uptime kuma directory
file:
path: "{{ uptime_kuma_dir }}"
state: directory
owner: {{ ansible_user }}
group: {{ ansible_user }}
owner: "{{ ansible_user }}"
group: "{{ ansible_user }}"
mode: '0755'
- name: Create docker-compose.yml for uptime kuma
@ -32,10 +35,26 @@
- ./data:/app/data
- name: Deploy uptime kuma container with docker compose
command: docker-compose up -d
command: docker compose up -d
args:
chdir: "{{ uptime_kuma_dir }}"
- name: Ensure Caddy sites-enabled directory exists
file:
path: /etc/caddy/sites-enabled
state: directory
owner: root
group: root
mode: '0755'
- name: Ensure Caddyfile includes import directive for sites-enabled
lineinfile:
path: /etc/caddy/Caddyfile
line: 'import sites-enabled/*'
insertafter: EOF
state: present
backup: yes
- name: Create Caddy reverse proxy configuration for uptime kuma
copy:
dest: "{{ caddy_sites_dir }}/uptime-kuma.conf"