mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-01 15:40:16 +00:00
6af75492a9
* Replace Iframely. Fixes #1681 * Add post_link_tags to nginx * Adding post_link_tags route * Cleaning up post_link_tags * Changing PostLink to SiteMetadata, adding it to the API. * Fixing issue when local has no openssl certs. * Fixing an issue with pictrs errors * Revert "Fixing issue when local has no openssl certs." This reverts commit dbf7d1b1ee03846e5ef7b7156e618424f1150e1d. * Add ca-certs to dockerfile for volume mount. * Cleaning up fetch_pictrs request * Changing to fetch_site_data
116 lines
3.5 KiB
YAML
116 lines
3.5 KiB
YAML
---
|
|
- hosts: all
|
|
|
|
# Install python if required
|
|
# https://www.josharcher.uk/code/ansible-python-connection-failure-ubuntu-server-1604/
|
|
gather_facts: False
|
|
pre_tasks:
|
|
- name: check lemmy_base_dir
|
|
fail:
|
|
msg: "`lemmy_base_dir` is unset. if you are upgrading from an older version, add `lemmy_base_dir=/lemmy` to your inventory file."
|
|
when: lemmy_base_dir is not defined
|
|
|
|
- name: install python for Ansible
|
|
# python2-minimal instead of python-minimal for ubuntu 20.04 and up
|
|
raw: test -e /usr/bin/python || (apt -y update && apt install -y python3-minimal python3-setuptools)
|
|
args:
|
|
executable: /bin/bash
|
|
register: output
|
|
changed_when: output.stdout != ''
|
|
|
|
- setup: # gather facts
|
|
|
|
tasks:
|
|
- name: install dependencies
|
|
apt:
|
|
pkg:
|
|
- 'nginx'
|
|
- 'docker-compose'
|
|
- 'docker.io'
|
|
- 'certbot'
|
|
|
|
- name: install certbot-nginx on ubuntu < 20
|
|
apt:
|
|
pkg:
|
|
- 'python-certbot-nginx'
|
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('20.04', '<')
|
|
|
|
- name: install certbot-nginx on ubuntu > 20
|
|
apt:
|
|
pkg:
|
|
- 'python3-certbot-nginx'
|
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('20.04', '>=')
|
|
|
|
- name: request initial letsencrypt certificate
|
|
command: certbot certonly --nginx --agree-tos --cert-name '{{ domain }}' -d '{{ domain }}' -m '{{ letsencrypt_contact_email }}'
|
|
args:
|
|
creates: '/etc/letsencrypt/live/{{domain}}/privkey.pem'
|
|
|
|
- name: create lemmy folder
|
|
file:
|
|
path: '{{item.path}}'
|
|
owner: '{{item.owner}}'
|
|
state: directory
|
|
with_items:
|
|
- path: '{{lemmy_base_dir}}'
|
|
owner: 'root'
|
|
- path: '{{lemmy_base_dir}}/volumes/'
|
|
owner: 'root'
|
|
- path: '{{lemmy_base_dir}}/volumes/pictrs/'
|
|
owner: '991'
|
|
|
|
- block:
|
|
- name: add template files
|
|
template:
|
|
src: '{{item.src}}'
|
|
dest: '{{item.dest}}'
|
|
mode: '{{item.mode}}'
|
|
with_items:
|
|
- src: 'templates/docker-compose.yml'
|
|
dest: '{{lemmy_base_dir}}/docker-compose.yml'
|
|
mode: '0600'
|
|
- src: 'templates/nginx.conf'
|
|
dest: '/etc/nginx/sites-enabled/lemmy.conf'
|
|
mode: '0644'
|
|
vars:
|
|
lemmy_docker_image: "dessalines/lemmy:{{ lookup('file', 'VERSION') }}"
|
|
lemmy_docker_ui_image: "dessalines/lemmy-ui:{{ lookup('file', 'VERSION') }}"
|
|
lemmy_port: "8536"
|
|
lemmy_ui_port: "1235"
|
|
pictshare_port: "8537"
|
|
|
|
- name: add config file (only during initial setup)
|
|
template:
|
|
src: 'templates/config.hjson'
|
|
dest: '{{lemmy_base_dir}}/lemmy.hjson'
|
|
mode: '0600'
|
|
force: false
|
|
owner: '1000'
|
|
group: '1000'
|
|
vars:
|
|
postgres_password: "{{ lookup('password', 'passwords/{{ inventory_hostname }}/postgres chars=ascii_letters,digits') }}"
|
|
jwt_password: "{{ lookup('password', 'passwords/{{ inventory_hostname }}/jwt chars=ascii_letters,digits') }}"
|
|
|
|
- name: enable and start docker service
|
|
systemd:
|
|
name: docker
|
|
enabled: yes
|
|
state: started
|
|
|
|
- name: start docker-compose
|
|
docker_compose:
|
|
project_src: '{{lemmy_base_dir}}'
|
|
state: present
|
|
pull: yes
|
|
remove_orphans: yes
|
|
|
|
- name: reload nginx with new config
|
|
shell: nginx -s reload
|
|
|
|
- name: certbot renewal cronjob
|
|
cron:
|
|
special_time: daily
|
|
name: certbot-renew-lemmy
|
|
user: root
|
|
job: "certbot certonly --nginx --cert-name '{{ domain }}' -d '{{ domain }}' --deploy-hook 'nginx -s reload'"
|