taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

www.git.site (627B)


      1 server {
      2        listen 80;
      3 	listen   [::]:80; ## listen for ipv4; this line is default and implied
      4 	# listen   [::]:80 default_server ipv6only=on; ## listen for ipv6
      5 
      6 	# Make site accessible from http://localhost/
      7 	server_name www.git.taler.net;
      8 
      9 
     10 	location /index.cgi {
     11             root /usr/share/gitweb/;
     12 
     13             include fastcgi_params;
     14             gzip off;
     15 	    fastcgi_param SCRIPT_NAME $uri;
     16             fastcgi_param   GITWEB_CONFIG  /etc/gitweb.conf;
     17             fastcgi_pass    unix:/var/run/fcgiwrap.socket;
     18 	}
     19 
     20         location / {
     21             root /usr/share/gitweb/;
     22             index index.cgi;
     23         }
     24 }