example gitweb config with ssl and auth
authorDobrica Pavlinusic <dpavlin@rot13.org>
Sat, 13 Mar 2010 13:05:52 +0000 (14:05 +0100)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Sat, 13 Mar 2010 13:05:52 +0000 (14:05 +0100)
gitweb/httpd.conf [new file with mode: 0644]

diff --git a/gitweb/httpd.conf b/gitweb/httpd.conf
new file mode 100644 (file)
index 0000000..78d5e48
--- /dev/null
@@ -0,0 +1,87 @@
+server.document-root = "/home/dpavlin/klin/backup/.git/gitweb"
+server.port = 6999
+server.modules = ( "mod_setenv", "mod_cgi", "mod_accesslog", "mod_access", "mod_compress", "mod_auth" )
+server.indexfiles = ( "gitweb.cgi" )
+server.pid-file = "/home/dpavlin/klin/backup/.git/pid"
+server.errorlog = "/home/dpavlin/klin/backup/.git/gitweb/error.log"
+
+ssl.engine = "enable" 
+ssl.pemfile = "/home/dpavlin/klin/backup/.git/gitweb/server.pem" 
+#ssl.ca-file = "/path/to/CA.crt"
+
+auth.backend = "htdigest"
+auth.backend.htdigest.userfile = "/home/dpavlin/klin/backup/.git/gitweb/passwd" 
+auth.require = ( "/" =>
+                 (
+                 # method must be either basic or digest
+                   "method"  => "digest",
+                   "realm"   => "bak-git",
+                   "require" => "valid-user",
+                 ),
+)
+
+# to enable, add "mod_access", "mod_accesslog" to server.modules
+# variable above and uncomment this
+accesslog.filename = "/home/dpavlin/klin/backup/.git/gitweb/access.log"
+
+setenv.add-environment = ( "PATH" => "/usr/local/bin:/usr/bin:/bin" )
+
+cgi.assign = ( ".cgi" => "" )
+
+# mimetype mapping
+mimetype.assign             = (
+  ".pdf"          =>      "application/pdf",
+  ".sig"          =>      "application/pgp-signature",
+  ".spl"          =>      "application/futuresplash",
+  ".class"        =>      "application/octet-stream",
+  ".ps"           =>      "application/postscript",
+  ".torrent"      =>      "application/x-bittorrent",
+  ".dvi"          =>      "application/x-dvi",
+  ".gz"           =>      "application/x-gzip",
+  ".pac"          =>      "application/x-ns-proxy-autoconfig",
+  ".swf"          =>      "application/x-shockwave-flash",
+  ".tar.gz"       =>      "application/x-tgz",
+  ".tgz"          =>      "application/x-tgz",
+  ".tar"          =>      "application/x-tar",
+  ".zip"          =>      "application/zip",
+  ".mp3"          =>      "audio/mpeg",
+  ".m3u"          =>      "audio/x-mpegurl",
+  ".wma"          =>      "audio/x-ms-wma",
+  ".wax"          =>      "audio/x-ms-wax",
+  ".ogg"          =>      "application/ogg",
+  ".wav"          =>      "audio/x-wav",
+  ".gif"          =>      "image/gif",
+  ".jpg"          =>      "image/jpeg",
+  ".jpeg"         =>      "image/jpeg",
+  ".png"          =>      "image/png",
+  ".xbm"          =>      "image/x-xbitmap",
+  ".xpm"          =>      "image/x-xpixmap",
+  ".xwd"          =>      "image/x-xwindowdump",
+  ".css"          =>      "text/css",
+  ".html"         =>      "text/html",
+  ".htm"          =>      "text/html",
+  ".js"           =>      "text/javascript",
+  ".asc"          =>      "text/plain",
+  ".c"            =>      "text/plain",
+  ".cpp"          =>      "text/plain",
+  ".log"          =>      "text/plain",
+  ".conf"         =>      "text/plain",
+  ".text"         =>      "text/plain",
+  ".txt"          =>      "text/plain",
+  ".dtd"          =>      "text/xml",
+  ".xml"          =>      "text/xml",
+  ".mpeg"         =>      "video/mpeg",
+  ".mpg"          =>      "video/mpeg",
+  ".mov"          =>      "video/quicktime",
+  ".qt"           =>      "video/quicktime",
+  ".avi"          =>      "video/x-msvideo",
+  ".asf"          =>      "video/x-ms-asf",
+  ".asx"          =>      "video/x-ms-asf",
+  ".wmv"          =>      "video/x-ms-wmv",
+  ".bz2"          =>      "application/x-bzip",
+  ".tbz"          =>      "application/x-bzip-compressed-tar",
+  ".tar.bz2"      =>      "application/x-bzip-compressed-tar",
+  ""              =>      "text/plain"
+ )
+#server.bind = "127.0.0.1"
+