From 0e9dab3ad51a2e4f8ad25d05d975cc1b2739dbfb Mon Sep 17 00:00:00 2001 From: Damian Myrda Date: Wed, 18 Sep 2024 22:24:40 -0500 Subject: [PATCH] Remove useless gitweb config --- compose.yml | 1 - git/gitweb.conf | 21 --------------------- 2 files changed, 22 deletions(-) delete mode 100644 git/gitweb.conf diff --git a/compose.yml b/compose.yml index 29a194b..366c8dc 100644 --- a/compose.yml +++ b/compose.yml @@ -77,7 +77,6 @@ services: - repos volumes: - ./git/:/var/lib/git/:ro - - ./git/gitweb.conf:/etc/gitweb.conf:ro expose: - "80" networks: diff --git a/git/gitweb.conf b/git/gitweb.conf deleted file mode 100644 index aa9665a..0000000 --- a/git/gitweb.conf +++ /dev/null @@ -1,21 +0,0 @@ -# The directories where your projects are. Must not end with a slash. -our $projectroot = "/var/lib/git/repositories"; - -# file with project list; by default, simply scan the projectroot dir. -our $projects_list = "/var/lib/git/projects.list"; - -# Base URLs for links displayed in the web interface. -#our @git_base_url_list = qw(git://localhost http://git@localhost); -# -# To display owner -our $feature{'owner'}{'default'} = [1]; - -# To display repository description -our $feature{'descr'}{'default'} = [1]; - -# To enable "blame" view (showing the author of each line in a source file), add the following line -$feature{'blame'}{'default'} = [1]; - -# To enable syntax highlighting with Gitweb, you have to first install the highlight package -$feature{'highlight'}{'default'} = [1]; - -- 2.43.4