All checks were successful
Version Bump Galaxy.yml / Version Bump Galaxy.yml (push) Successful in 6s
29 lines
590 B
Markdown
29 lines
590 B
Markdown
<!--
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
SPDX-FileCopyrightText: 2025 Dosh LLC
|
|
-->
|
|
|
|
# Ansible Role `dosh_llc.ansible_caddy.install`
|
|
|
|
Installs a custom built [caddy binary](https://git.auengun.net/dosh-llc/bin-caddy).
|
|
|
|
## Installation
|
|
|
|
Read the [Collection README.md](../../README.md) for installation instructions.
|
|
|
|
## Examples
|
|
|
|
### Basic Caddy
|
|
|
|
```yaml
|
|
- name: Caddy
|
|
hosts: all
|
|
become: true
|
|
tasks:
|
|
- ansible.builtin.include_role:
|
|
name: dosh_llc.ansible_caddy.install
|
|
vars:
|
|
CADDY_CADDYFILE_LOCAL_SRC: "templates/Caddyfile"
|
|
tags:
|
|
- caddy
|
|
```
|