aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-03-07 19:15:31 +0800
committerYuqian Yang <crupest@crupest.life>2025-03-07 19:44:36 +0800
commit91690b59663b89bbc3d8c7febe2b046de1424672 (patch)
tree7dbd70ca6ede7f03925b371726246cfa327e1e71
parentcb6c8080bc6c6e262a73a8d1c0d21e12ebc3906a (diff)
downloadcrupest-91690b59663b89bbc3d8c7febe2b046de1424672.tar.gz
crupest-91690b59663b89bbc3d8c7febe2b046de1424672.tar.bz2
crupest-91690b59663b89bbc3d8c7febe2b046de1424672.zip
fix(git): public/private repo problem, enable cgit for private.
-rw-r--r--services/docker/git-server/Dockerfile7
-rw-r--r--services/docker/git-server/app/git/gitconfig3
-rwxr-xr-xservices/docker/git-server/app/git/hooks/update (renamed from services/docker/git-server/hooks/update)0
-rwxr-xr-xservices/docker/git-server/app/lighttpd-wrapper.bash9
-rw-r--r--services/docker/git-server/app/lighttpd/auth.conf (renamed from services/docker/git-server/git-auth.conf)0
-rw-r--r--services/docker/git-server/app/lighttpd/lighttpd.conf (renamed from services/docker/git-server/git-lighttpd.conf)19
-rw-r--r--services/docker/git-server/gitconfig6
-rwxr-xr-xservices/docker/git-server/lighttpd-wrapper.bash8
-rw-r--r--services/templates/cgit/cgitrc.template (renamed from services/templates/cgitrc.template)7
-rw-r--r--services/templates/cgit/private-list1
-rw-r--r--services/templates/docker-compose.yaml.template2
11 files changed, 36 insertions, 26 deletions
diff --git a/services/docker/git-server/Dockerfile b/services/docker/git-server/Dockerfile
index 274ba6a..867021c 100644
--- a/services/docker/git-server/Dockerfile
+++ b/services/docker/git-server/Dockerfile
@@ -5,12 +5,9 @@ RUN apt-get update && apt-get install -y \
rm -rf /var/lib/apt/lists/*
RUN groupadd -g 1000 git && useradd -m -u 1000 -g 1000 -s /usr/bin/bash git
-ENV GIT_CONFIG_SYSTEM=/etc/gitconfig GIT_CONFIG_GLOBAL=/git/private/gitconfig
-
-ADD gitconfig /etc/gitconfig
-ADD hooks/* /etc/git/hooks/
-ADD git-lighttpd.conf git-auth.conf lighttpd-wrapper.bash /app/
+ENV GIT_CONFIG_SYSTEM=/app/git/gitconfig GIT_CONFIG_GLOBAL=/git/gitconfig
+ADD app /app
USER git:git
VOLUME [ "/git" ]
CMD [ "tini", "--", "/app/lighttpd-wrapper.bash" ]
diff --git a/services/docker/git-server/app/git/gitconfig b/services/docker/git-server/app/git/gitconfig
new file mode 100644
index 0000000..5cc41dd
--- /dev/null
+++ b/services/docker/git-server/app/git/gitconfig
@@ -0,0 +1,3 @@
+[core]
+ autocrlf = false
+ hooksPath = /app/git/hooks/
diff --git a/services/docker/git-server/hooks/update b/services/docker/git-server/app/git/hooks/update
index d6bfc1a..d6bfc1a 100755
--- a/services/docker/git-server/hooks/update
+++ b/services/docker/git-server/app/git/hooks/update
diff --git a/services/docker/git-server/app/lighttpd-wrapper.bash b/services/docker/git-server/app/lighttpd-wrapper.bash
new file mode 100755
index 0000000..54079ad
--- /dev/null
+++ b/services/docker/git-server/app/lighttpd-wrapper.bash
@@ -0,0 +1,9 @@
+#!/usr/bin/bash
+
+set -e
+
+[[ -f /git/user-info ]] || touch -a /git/user-info
+
+exec 3>&1
+exec 4>&1
+exec lighttpd -D -f /app/lighttpd/lighttpd.conf
diff --git a/services/docker/git-server/git-auth.conf b/services/docker/git-server/app/lighttpd/auth.conf
index d643659..d643659 100644
--- a/services/docker/git-server/git-auth.conf
+++ b/services/docker/git-server/app/lighttpd/auth.conf
diff --git a/services/docker/git-server/git-lighttpd.conf b/services/docker/git-server/app/lighttpd/lighttpd.conf
index 44e0fd6..a96a778 100644
--- a/services/docker/git-server/git-lighttpd.conf
+++ b/services/docker/git-server/app/lighttpd/lighttpd.conf
@@ -1,27 +1,33 @@
server.modules += ("mod_accesslog")
+server.modules += ("mod_rewrite")
server.modules += ("mod_auth", "mod_authn_file", "mod_access")
server.modules += ("mod_alias", "mod_setenv", "mod_cgi")
server.port = 3636
server.document-root = "/var/www/html/"
accesslog.filename = "/dev/fd/3"
+server.breakagelog = "/dev/fd/4"
$HTTP["url"] =^ "/git" {
mimetype.assign = ( ".css" => "text/css" )
$HTTP["url"] =^ "/git/private" {
- include "git-auth.conf"
+ include "auth.conf"
}
$HTTP["url"] =~ "^/git/.*/(HEAD|info/refs|objects/info/[^/]+|git-(upload|receive)-pack)$" {
+ url.rewrite-once = (
+ "^/git/private" => "$0",
+ "^/git(.*)" => "/git/public$1"
+ )
+
$HTTP["querystring"] =~ "service=git-receive-pack" {
- include "git-auth.conf"
+ include "auth.conf"
}
$HTTP["url"] =~ "^/git/.*/git-receive-pack$" {
- include "git-auth.conf"
+ include "auth.conf"
}
- alias.url += ( "/git/private" => "/usr/lib/git-core/git-http-backend/private" )
- alias.url += ( "/git" => "/usr/lib/git-core/git-http-backend/public" )
+ alias.url += ( "/git" => "/usr/lib/git-core/git-http-backend" )
setenv.add-environment = (
"GIT_PROJECT_ROOT" => "/git/repos",
"GIT_HTTP_EXPORT_ALL" => ""
@@ -43,6 +49,9 @@ $HTTP["url"] =^ "/git" {
alias.url += (
"/git" => "/usr/lib/cgit/cgit.cgi",
)
+ setenv.add-environment = (
+ "CGIT_CONFIG" => "/app/cgit/cgitrc"
+ )
cgi.assign = ("" => "")
}
}
diff --git a/services/docker/git-server/gitconfig b/services/docker/git-server/gitconfig
deleted file mode 100644
index 0019ba9..0000000
--- a/services/docker/git-server/gitconfig
+++ /dev/null
@@ -1,6 +0,0 @@
-[core]
- autocrlf = false
- hooksPath = /etc/git/hooks/
-
-[receive]
- advertisePushOptions = true
diff --git a/services/docker/git-server/lighttpd-wrapper.bash b/services/docker/git-server/lighttpd-wrapper.bash
deleted file mode 100755
index a33015a..0000000
--- a/services/docker/git-server/lighttpd-wrapper.bash
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/usr/bin/bash
-
-set -e
-
-touch -a /git/user-info
-
-exec 3>&1
-exec lighttpd -D -f /app/git-lighttpd.conf
diff --git a/services/templates/cgitrc.template b/services/templates/cgit/cgitrc.template
index 45ee262..ed581bd 100644
--- a/services/templates/cgitrc.template
+++ b/services/templates/cgit/cgitrc.template
@@ -16,6 +16,11 @@ snapshots=tar.gz tar.bz2 zip
readme=:README.md
readme=:README
-clone-prefix=@@CRUPEST_ROOT_URL@@git/
+clone-prefix=@@CRUPEST_ROOT_URL@@git
section-from-path=1
scan-path=/git/repos/public
+
+strict-export=cgit-export
+section-from-path=-1
+project-list=/app/cgit/private-list
+scan-path=/git/repos
diff --git a/services/templates/cgit/private-list b/services/templates/cgit/private-list
new file mode 100644
index 0000000..c8c6761
--- /dev/null
+++ b/services/templates/cgit/private-list
@@ -0,0 +1 @@
+private \ No newline at end of file
diff --git a/services/templates/docker-compose.yaml.template b/services/templates/docker-compose.yaml.template
index 3523023..842037b 100644
--- a/services/templates/docker-compose.yaml.template
+++ b/services/templates/docker-compose.yaml.template
@@ -84,7 +84,7 @@ services:
hostname: git-server
volumes:
- "./@@CRUPEST_DATA_GIT_DIR@@:/git"
- - "./@@CRUPEST_GENERATED_DIR@@/cgitrc:/etc/cgitrc:ro"
+ - "./@@CRUPEST_GENERATED_DIR@@/cgit:/app/cgit"
restart: on-failure:3
roundcubemail: