initial commit

This commit is contained in:
HgO
2020-04-13 14:46:45 +02:00
commit 961498e32b
76 changed files with 2715 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
- name: Create .htpasswd file
htpasswd:
path: "/etc/nginx/{{ location.basic_auth.file }}"
name: "{{ location.basic_auth.user | default('admin') }}"
password: "{{ location.basic_auth.password }}"
state: present
create: yes
owner: "{{ nginx_user }}"
group: "{{ nginx_user }}"
mode: 0600
loop: "{{ nginx_server.locations }}"
loop_control:
loop_var: location
label: "{{ location.path }}"
when: "location.basic_auth is defined"
notify:
- reload nginx
- name: Copy Nginx config
template:
src: "{{ nginx_template_file }}"
dest: "{{ nginx_config_dir }}/{{ nginx_config_file }}"
owner: "{{ nginx_user }}"
group: "{{ nginx_user }}"
mode: 0644
notify:
- reload nginx

View File

@@ -0,0 +1,4 @@
---
- name: Configure Nginx
import_tasks: configure.yml
tags: nginx