diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-03-07 15:53:34 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-03-07 16:46:57 +0800 |
commit | cb6c8080bc6c6e262a73a8d1c0d21e12ebc3906a (patch) | |
tree | 156ffa86968259667eff7fb1fd085bca65e0f2e1 | |
parent | 417116fddab1635d3b6f419d853e66ff7d00ee86 (diff) | |
download | crupest-cb6c8080bc6c6e262a73a8d1c0d21e12ebc3906a.tar.gz crupest-cb6c8080bc6c6e262a73a8d1c0d21e12ebc3906a.tar.bz2 crupest-cb6c8080bc6c6e262a73a8d1c0d21e12ebc3906a.zip |
feat(git): better separation of private/public repos.
cgit for private repo is turned off now.
-rw-r--r-- | services/docker/git-server/git-lighttpd.conf | 8 | ||||
-rw-r--r-- | services/templates/cgitrc.template | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/services/docker/git-server/git-lighttpd.conf b/services/docker/git-server/git-lighttpd.conf index d284ee1..44e0fd6 100644 --- a/services/docker/git-server/git-lighttpd.conf +++ b/services/docker/git-server/git-lighttpd.conf @@ -1,6 +1,6 @@ server.modules += ("mod_accesslog") server.modules += ("mod_auth", "mod_authn_file", "mod_access") -server.modules += ("mod_setenv", "mod_cgi", "mod_alias") +server.modules += ("mod_alias", "mod_setenv", "mod_cgi") server.port = 3636 server.document-root = "/var/www/html/" @@ -20,7 +20,8 @@ $HTTP["url"] =^ "/git" { $HTTP["url"] =~ "^/git/.*/git-receive-pack$" { include "git-auth.conf" } - alias.url += ( "/git" => "/usr/lib/git-core/git-http-backend" ) + alias.url += ( "/git/private" => "/usr/lib/git-core/git-http-backend/private" ) + alias.url += ( "/git" => "/usr/lib/git-core/git-http-backend/public" ) setenv.add-environment = ( "GIT_PROJECT_ROOT" => "/git/repos", "GIT_HTTP_EXPORT_ALL" => "" @@ -29,7 +30,8 @@ $HTTP["url"] =^ "/git" { } else $HTTP["url"] =~ "^/git/.*/((objects/[0-9a-f]{2}/[0-9a-f]{38})|(pack/pack-[0-9a-f]{40}.(pack|idx)))$" { alias.url += ( - "/git" => "/git/repos", + "/git/private" => "/git/repos/private", + "/git" => "/git/repos/public", ) } else $HTTP["url"] =^ "/git/static" { diff --git a/services/templates/cgitrc.template b/services/templates/cgitrc.template index 7e05ead..45ee262 100644 --- a/services/templates/cgitrc.template +++ b/services/templates/cgitrc.template @@ -18,4 +18,4 @@ readme=:README clone-prefix=@@CRUPEST_ROOT_URL@@git/ section-from-path=1 -scan-path=/git/repos/ +scan-path=/git/repos/public |