All checks were successful
Publish Collection / Publish Collection (push) Successful in 11s
29 lines
621 B
Markdown
29 lines
621 B
Markdown
<!--
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
SPDX-FileCopyrightText: 2025 Dosh LLC
|
|
-->
|
|
|
|
# Ansible Role `dosh_llc.ansible_webmin.configure_subpath`
|
|
|
|
Configures [webmin](https://webmin.com/) to use a subpath with appropriate redirects/allows/etc.
|
|
|
|
## Installation
|
|
|
|
Read the [Collection README.md](../../README.md) for installation instructions.
|
|
|
|
## Examples
|
|
|
|
### Basic Webmin
|
|
|
|
```yaml
|
|
- name: Webmin
|
|
hosts: all
|
|
become: true
|
|
tasks:
|
|
- ansible.builtin.include_role:
|
|
name: dosh_llc.ansible_webmin.subpath
|
|
vars:
|
|
WEBMIN_WEBMINFILE_LOCAL_SRC: "templates/Webminfile"
|
|
tags:
|
|
- webmin
|
|
```
|