summaryrefslogtreecommitdiffstats
path: root/roles/media/tasks/main.yml
blob: 6eb3ab620ca0e5ea25d99cefba944f046b43ca14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
- name: Install package for setting htpasswd
  package:
    name: python3-passlib
- name: Ensure web path exists
  file:
    path: /var/www/{{ host_name }}/{{ emacsconf_year }}/backstage
    state: directory
- name: Change ownership and permissions
  file:
    path: /var/www/{{ host_name }}/{{ emacsconf_year }}
    owner: "{{ emacsconf_user }}"
    group: "{{ emacsconf_group }}"
    mode: "u=rwX,g=rwX,o=rX"
    recurse: true
- name: Create htpasswd entry
  htpasswd:
    create: yes
    name: "{{ emacsconf_backstage_user }}"
    password: "{{ emacsconf_backstage_password }}"
    path: /etc/nginx/sites-available/{{ host_name }}-{{ emacsconf_year }}-htpasswd
- name: Create Nginx include
  template:
    src: nginx-include
    dest: /etc/nginx/sites-available/{{ host_name }}-{{ emacsconf_year }}-include
- name: Include it in the main configuration
  lineinfile:
    path: /etc/nginx/sites-available/{{ host_name }}
    regexp: "{{ host_name }}-{{ emacsconf_year }}-include"
    line: "    include sites-available/{{ host_name }}-{{ emacsconf_year }}-include;"
    insertafter: root
- name: Reload configuration
  service:
    name: nginx
    state: reloaded