यहाँ मैंने gitweb
Ubuntu 14.04 पर सेटअप करने के लिए क्या किया - SSL और सिस्टम उपयोगकर्ताओं के प्रमाणीकरण के साथ pwauth
। डिफ़ॉल्ट रूप से, gitweb
a का उपयोग करता है /etc/gitweb.conf
, जो git
परियोजनाओं की अपेक्षा करता है /var/lib/git
।
इसलिए मैंने अपने git
रिपोज को यहां रखने की कोशिश की , इसलिए इस उदाहरण में हमें बदलाव नहीं करना है /etc/gitweb.conf
- मेरा रूप /var/lib/git
इस तरह है:
$ ls -la /var/lib/git/
total 12
drwxrwxrwx 3 root root 4096 Apr 9 16:01 .
drwxr-xr-x 75 root root 4096 Apr 7 17:31 ..
lrwxrwxrwx 1 myuser myuser 28 Apr 9 16:01 gitweb.cgi -> /usr/share/gitweb/gitweb.cgi
drwxrwsr-x 7 myuser www-data 4096 Apr 10 17:50 testrepo.git
तो, अपने रेपो के बगल में, आपको /usr/share/gitweb/gitweb.cgi
इस निर्देशिका में भी सहानुभूति की आवश्यकता होगी ...
फिर, आप निम्न का उपयोग कर सकते हैं /etc/apache2/sites-available/gitw-ssl.conf
:
<IfModule mod_ssl.c>
<VirtualHost _default_:443>
ServerAdmin webmaster@localhost
ServerName localhost
HeaderName HEADER
DocumentRoot /var/www/html
LogLevel info
ErrorLog ${APACHE_LOG_DIR}/error-gw.log
CustomLog ${APACHE_LOG_DIR}/access-gw.log combined
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/my.crt
SSLCertificateKeyFile /etc/apache2/ssl/my.key
<FilesMatch "\.(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
<Directory /usr/lib/cgi-bin>
SSLOptions +StdEnvVars
</Directory>
<IfModule mod_authnz_external.c>
# old style:
AddExternalAuth pwauth /usr/sbin/pwauth
SetExternalAuthMethod pwauth pipe
# new style:
#DefineExternalAuth pwauth pipe /usr/sbin/pwauth
</IfModule>
# as more specific, /gitweb/static should go first
Alias /gitweb/static /usr/share/gitweb/static
Alias /gitweb /var/lib/git
# gitweb.cgi alias is no dice - symlink is needed:
Alias gitweb.cgi /usr/share/gitweb/gitweb.cgi
<Directory /var/lib/git>
Options +FollowSymlinks +ExecCGI
SSLRequireSSL
AuthType basic
AuthName "Private git repository"
AuthBasicProvider external
AuthExternal pwauth
Require valid-user
AddHandler cgi-script .cgi
DirectoryIndex gitweb.cgi
</Directory>
ScriptAlias /git/ /usr/lib/git-core/git-http-backend/
<Directory "/usr/lib/git-core/">
SetEnv GIT_PROJECT_ROOT /var/lib/git
SetEnv GIT_HTTP_EXPORT_ALL
Options +ExecCGI
SSLRequireSSL
AuthType basic
AuthName "Private git repository"
AuthBasicProvider external
AuthExternal pwauth
Require valid-user
</Directory>
</VirtualHost>
</IfModule>
और अंत में आप कर सकते हैं:
# not sure if also `fcgid auth_digest` are needed:
sudo a2enmod ssl cgi alias env rewrite
sudo a2ensite gitw-ssl.conf
# if not `reload`, use `restart`:
sudo service apache2 reload
इसके बाद, (उदाहरण के लिए ) gitweb
पर उपलब्ध होना चाहिए ; और आपको क्लोन करना चाहिए (स्व-हस्ताक्षरित एसएसएल प्रमाणपत्र के मामले में):https://localhost/gitweb/
https://localhost/gitweb/?p=testrepo.git;a=summary
GIT_SSL_NO_VERIFY=1 git clone https://myuser@localhost/git/testrepo.git