Allow gitea role to use UNIX socket

This commit is contained in:
2019-12-01 13:44:49 -06:00
parent 6936849797
commit 8488dc650a
3 changed files with 21 additions and 3 deletions

View File

@@ -58,6 +58,14 @@
state: directory
with_items: "{{ gitea_var_tree }}"
- name: "create {{ gitea_run_path }} path"
file:
path: "{{ gitea_run_path }}"
owner: "{{ gitea_user }}"
group: "{{ gitea_group }}"
mode: 0755
state: directory
- name: "create {{ gitea_log_path }} path"
file:
path: "{{ gitea_log_path }}"