mirror of
https://gitlab.com/tildes/tildes.git
synced 2026-04-26 11:10:54 +02:00
4cc100ab02
This changes the site to run on Debian 10 instead of Ubuntu 16.04. It also fully converts the previous Salt setup to use Ansible instead. Most of this was a relatively straightforward conversion, and it should be very close to equivalent. One notable difference is that I removed the setup for the "monitoring" server, since I wasn't confident that the way of setting up self-hosted Sentry and Grafana was working any more. I'll look to re-add that at some point, but it's not urgent.
39 lines
903 B
YAML
39 lines
903 B
YAML
---
|
|
- name: Add shortener config file
|
|
template:
|
|
src: tildes-shortener.conf.jinja2
|
|
dest: /etc/nginx/sites-available/tildes-shortener.conf
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
|
|
- name: Enable shortener in nginx
|
|
file:
|
|
path: /etc/nginx/sites-enabled/tildes-shortener.conf
|
|
src: /etc/nginx/sites-available/tildes-shortener.conf
|
|
state: link
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
notify:
|
|
- Reload nginx
|
|
|
|
- name: Add static sites config file
|
|
template:
|
|
src: tildes-static-sites.conf.jinja2
|
|
dest: /etc/nginx/sites-available/tildes-static-sites.conf
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
|
|
- name: Enable static sites in nginx
|
|
file:
|
|
path: /etc/nginx/sites-enabled/tildes-static-sites.conf
|
|
src: /etc/nginx/sites-available/tildes-static-sites.conf
|
|
state: link
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
notify:
|
|
- Reload nginx
|