Skip to content
Snippets Groups Projects
Verified Commit e3ad735f authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Minor fixes

parent 5a9e8dda
No related branches found
No related tags found
No related merge requests found
......@@ -32,6 +32,7 @@ Create a playbook requirements and inventory file:
touch requirements.yml
touch playbook.yml
touch inventory.ini
ansible.cfg
Add the following to `requirements.yml`:
......@@ -47,6 +48,15 @@ Install the role:
ansible-galaxy install -r requirements.yml
```
Add the following to `ansible.cfg`:
```
[defaults]
# Needed to use become with unprevileged users,
# see https://docs.ansible.com/ansible/latest/user_guide/become.html#becoming-an-unprivileged-user
allow_world_readable_tmpfiles=true
```
Add the following to `playbook.yml`:
```yaml
......
......@@ -23,8 +23,8 @@ server {
ssl_certificate {{ funkwhale_ssl_cert_path }};
ssl_certificate_key {{ funkwhale_ssl_key_path }};
{% else -%}
ssl_certificate /ect/lectsencrypt/live/{{ funkwhale_hostname }}/fullchain.pem;
ssl_certificate_key /ect/lectsencrypt/live/{{ funkwhale_hostname }}/privkey.pem;
ssl_certificate /etc/letsencrypt/live/{{ funkwhale_hostname }}/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/{{ funkwhale_hostname }}/privkey.pem;
{% endif -%}
# from https://cipherli.st/
ssl_prefer_server_ciphers on;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment