2023-01-27 18:43:20 +01:00

19 lines
307 B
Markdown

# Install Webserver
## How to
Copy then change values of hosts example file
```bash
$ cp hosts.example.ini hosts.ini
```
Then run the playbook:
```bash
DBPASSWORD="$(date +%s | sha256sum | base64 | head -c 32 ; echo)"
ansible-playbook -i hosts.ini playbook.yml \
-e db_root_password=$DBPASSWORD
```