https://github.com/aboutbits/ansible-caddy-installation
Ansible - Caddy Installation Role
https://github.com/aboutbits/ansible-caddy-installation
ansible ansible-role caddy caddy-installation caddyserver
Last synced: 7 months ago
JSON representation
Ansible - Caddy Installation Role
- Host: GitHub
- URL: https://github.com/aboutbits/ansible-caddy-installation
- Owner: aboutbits
- Created: 2021-06-10T05:48:16.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-05-07T09:55:15.000Z (9 months ago)
- Last Synced: 2025-05-07T10:51:07.168Z (9 months ago)
- Topics: ansible, ansible-role, caddy, caddy-installation, caddyserver
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Ansible Caddy Installation Role
===============================
Install Caddy role.
## Role Variables
- `caddy_installation_packages`: The additional packages that should be included in the Caddy installation. (The packages can be found here: https://caddyserver.com/download)
## Example Playbook
```yaml
- hosts: all
tasks:
- ansible.builtin.include_role:
name: ansible-caddy-installation
vars:
caddy_installation_packages:
- github.com/caddy-dns/digitalocean
```
## Versioning
In order to have a versioning in place and working, create lightweight tags that point to the appropriate minor release versions.
Creating a new minor release:
```bash
git tag v1
git push --tags
```
Replacing an already existing minor release:
```bash
git tag -d v1
git push origin :refs/tags/v1
git tag v1
git push --tags
```