]> Untitled Git - gitweb.git/blob - web/default.conf
Initial prod compose file
[gitweb.git] / web / default.conf
1 server {
2     listen 80;
3     root /usr/share/gitweb;
4
5     location /static {
6         sendfile on;
7         tcp_nopush on;
8     }
9     location / {
10         fastcgi_pass cgi:9000;
11         fastcgi_param SCRIPT_FILENAME   /usr/share/gitweb/gitweb.cgi;
12         fastcgi_param PATH_INFO         $uri;
13         fastcgi_param GITWEB_CONFIG     /etc/gitweb.conf;
14         include fastcgi_params;
15    }
16 }