blob: f49bcd2e72d7ecfbacf3998a255eb2795b9eb8e2 (
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
35
36
37
|
- name: Set media_protect_root
set_fact:
media_protect_root: not test_mode
- 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
|