Needed to modify the nginx configuration to allow streaming of ssh. Using docker compose for this service, will probably migrate all others soon.
14 lines
377 B
Markdown
Executable File
14 lines
377 B
Markdown
Executable File
```bash
|
|
# install roles and collections
|
|
ansible-galaxy install -r requirements.yml
|
|
|
|
# Install the playbook
|
|
ansible-playbook -i inventory -e @secrets.enc --ask-vault-pass frontend.yaml
|
|
|
|
# Github runner
|
|
ansible-playbook -i inventory -e @secrets.enc --ask-vault-pass github-runner.yaml
|
|
|
|
# gitea server
|
|
ansible-playbook -i inventory -e @secrets.enc --ask-vault-pass gitea.yaml
|
|
```
|