From 246e2405b8d76c46b8a49de6fd1311c936e6b852 Mon Sep 17 00:00:00 2001 From: Richard Ipsum Date: Thu, 30 Jan 2014 11:23:40 +0000 Subject: Reconfigure lighttpd We now run two separate httpds, one for morph-cache-server and one for git-httpd. We do this because we want to run morph-cache-server as the cache user and git-httpd as the git user --- etc/lighttpd/git-auth.conf | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 etc/lighttpd/git-auth.conf (limited to 'etc/lighttpd/git-auth.conf') diff --git a/etc/lighttpd/git-auth.conf b/etc/lighttpd/git-auth.conf new file mode 100644 index 0000000..9b7a010 --- /dev/null +++ b/etc/lighttpd/git-auth.conf @@ -0,0 +1,10 @@ +auth.require = ( + "/" => ( + "method" => "basic", + "realm" => "Git Access", + "require" => "valid-user" + ) +) + +auth.backend = "htpasswd" +auth.backend.htpasswd.userfile = "/home/git/htpasswd" -- cgit v1.2.1