aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'clarkzjw.cc/config/bia/ansible/roles/cgit/tasks/main.yaml')
-rw-r--r--clarkzjw.cc/config/bia/ansible/roles/cgit/tasks/main.yaml41
1 files changed, 41 insertions, 0 deletions
diff --git a/clarkzjw.cc/config/bia/ansible/roles/cgit/tasks/main.yaml b/clarkzjw.cc/config/bia/ansible/roles/cgit/tasks/main.yaml
new file mode 100644
index 0000000..872a43a
--- /dev/null
+++ b/clarkzjw.cc/config/bia/ansible/roles/cgit/tasks/main.yaml
@@ -0,0 +1,41 @@
1- name: Install cgit, Nginx
2 pkgng:
3 state: present
4 name:
5 - cgit
6 - nginx
7 - fcgiwrap
8 - security/py-certbot-nginx
9
10- name: Create git directory
11 file:
12 path: /opt/git
13 state: directory
14 owner: www
15 group: www
16 recurse: yes
17
18- name: Create Nginx conf directory
19 file:
20 path: /usr/local/etc/nginx/conf.d
21 state: directory
22 recurse: yes
23
24- name: Render nginx config file
25 template:
26 src: nginx.conf.j2
27 dest: "/usr/local/etc/nginx/nginx.conf"
28 mode: 0644
29
30- name: Render nginx config file
31 template:
32 src: cgit.conf.j2
33 dest: "/usr/local/etc/nginx/conf.d/cgit.conf"
34 mode: 0644
35
36# TODO
37# create certbot https certificate
38# test nginx conf
39# reload nginx conf
40# create git user
41# git user permission
Powered by cgit v1.2.3 (git 2.41.0)