about summary refs log tree commit diff stats
path: root/tools/conf
diff options
context:
space:
mode:
authorSilvino Silva <silvino@bk.ru>2017-01-14 10:38:11 +0000
committerSilvino Silva <silvino@bk.ru>2017-01-14 10:38:11 +0000
commit066ba96efe43daba9138b36b9ac3473d7607c8bc (patch)
treecc1b625d33b4b900127416f9ea288cc32bec9637 /tools/conf
parente48eea680d098cfa1ad953e56a8d96210906c8d5 (diff)
downloaddoc-066ba96efe43daba9138b36b9ac3473d7607c8bc.tar.gz
fix tools nginx gitweb server
Diffstat (limited to 'tools/conf')
-rw-r--r--tools/conf/etc/nginx/sites-enabled/git.localhost.conf30
1 files changed, 12 insertions, 18 deletions
diff --git a/tools/conf/etc/nginx/sites-enabled/git.localhost.conf b/tools/conf/etc/nginx/sites-enabled/git.localhost.conf
index 0cef2b1..d114ab8 100644
--- a/tools/conf/etc/nginx/sites-enabled/git.localhost.conf
+++ b/tools/conf/etc/nginx/sites-enabled/git.localhost.conf
@@ -5,27 +5,21 @@ server {
 
     root /srv/www/gitweb;
 
-#  location / {
-#      index gitweb.cgi;
-#  }
-
-#  location /gitweb.cgi {
-#      include fastcgi_params;
-#      gzip off;
-#      fastcgi_param   SCRIPT_FILENAME /srv/www/gitweb/gitweb.cgi;
-#      fastcgi_param   GITWEB_CONFIG	/etc/gitweb.conf;
-#      fastcgi_pass    unix:/var/run/fcgiwrap.sock;
-#  }
+    location /static/ {
+        # static files (png/css) served from /usr/share/gitweb/static
+        root /usr/share/gitweb ;
+        expires 30d;
+    }
 
     location / {
-    index gitweb.cgi
-    fastcgi_param GITWEB_CONFIG  /etc/gitweb.conf;
-    fastcgi_param DOCUMENT_ROOT  /srv/www/gitweb/;
-    fastcgi_param SCRIPT_NAME    /gitweb.cgi$fastcgi_path_info;
-    fastcgi_split_path_info      ^()(/?.+)$;
+        index gitweb.cgi
+        fastcgi_param GITWEB_CONFIG  /etc/gitweb.conf;
+        fastcgi_param DOCUMENT_ROOT  /srv/www/gitweb/;
+        fastcgi_param SCRIPT_NAME    /gitweb.cgi$fastcgi_path_info;
+        fastcgi_split_path_info      ^()(/?.+)$;
 
-    include fastcgi_params;
-    fastcgi_pass unix:/var/run/fcgiwrap.sock;
+        include fastcgi_params;
+        fastcgi_pass unix:/var/run/fcgiwrap.sock;
      }
 
 }