From 954ab1887b20e9e0d5885c1cec8d71641cb3dcd4 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Thu, 13 Aug 2026 16:29:05 +0100 Subject: remove homelab config --- ansible/roles/git/templates/conf.d/fcgiwrap | 3 --- ansible/roles/git/templates/conf.d/git-daemon | 3 --- ansible/roles/git/templates/nginx/cgit.conf | 17 ----------------- 3 files changed, 23 deletions(-) delete mode 100644 ansible/roles/git/templates/conf.d/fcgiwrap delete mode 100644 ansible/roles/git/templates/conf.d/git-daemon delete mode 100644 ansible/roles/git/templates/nginx/cgit.conf (limited to 'ansible/roles/git/templates') diff --git a/ansible/roles/git/templates/conf.d/fcgiwrap b/ansible/roles/git/templates/conf.d/fcgiwrap deleted file mode 100644 index 65a40e8..0000000 --- a/ansible/roles/git/templates/conf.d/fcgiwrap +++ /dev/null @@ -1,3 +0,0 @@ -socket=unix:{{ fcgiwrap_socket }} -user={{ fcgiwrap_user }} -group={{ fcgiwrap_group }} diff --git a/ansible/roles/git/templates/conf.d/git-daemon b/ansible/roles/git/templates/conf.d/git-daemon deleted file mode 100644 index c50b66b..0000000 --- a/ansible/roles/git/templates/conf.d/git-daemon +++ /dev/null @@ -1,3 +0,0 @@ -GITDAEMON_OPTS="--syslog --base-path=/srv/git" -GIT_USER="gitd" -GIT_GROUP="git" diff --git a/ansible/roles/git/templates/nginx/cgit.conf b/ansible/roles/git/templates/nginx/cgit.conf deleted file mode 100644 index 456173b..0000000 --- a/ansible/roles/git/templates/nginx/cgit.conf +++ /dev/null @@ -1,17 +0,0 @@ -server { - listen {{ services.git.port }}; - listen [::]:{{ services.git.port }}; - server_name {{ ( subdomains | selectattr('service', 'eq', 'git') | first ).full_domain }}; - - root /usr/share/webapps/cgit; - try_files $uri @cgit; - - location @cgit { - include fastcgi_params; - fastcgi_param SCRIPT_FILENAME /usr/share/webapps/cgit/cgit.cgi; - fastcgi_param PATH_INFO $uri; - fastcgi_param QUERY_STRING $args; - fastcgi_param HTTP_HOST $server_name; - fastcgi_pass unix:/run/fcgiwrap/fcgiwrap.sock; - } -} -- cgit v1.2.3