diff options
author | Silvino Silva <silvino@bk.ru> | 2017-02-01 05:10:24 +0000 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2017-02-01 05:10:24 +0000 |
commit | ed23bb3344ec5be2893db8d8d838c38c9f2baacd (patch) | |
tree | 662a5e7ce5569249b63c9f4925ba4f75b4c44575 /tools/conf/etc/nginx/sites-enabled/git.localhost.conf | |
parent | aac4d4e7e8de530495e0e0827ddf7680c7e65e69 (diff) | |
parent | a671b0c01821d46d9f783393b887d7987ec10161 (diff) | |
download | doc-ed23bb3344ec5be2893db8d8d838c38c9f2baacd.tar.gz |
New release 0.3.0
Diffstat (limited to 'tools/conf/etc/nginx/sites-enabled/git.localhost.conf')
-rw-r--r-- | tools/conf/etc/nginx/sites-enabled/git.localhost.conf | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tools/conf/etc/nginx/sites-enabled/git.localhost.conf b/tools/conf/etc/nginx/sites-enabled/git.localhost.conf new file mode 100644 index 0000000..d114ab8 --- /dev/null +++ b/tools/conf/etc/nginx/sites-enabled/git.localhost.conf @@ -0,0 +1,25 @@ +server { + listen 443 ssl; + + server_name git.localhost git.c9.core git.core.privat-network.net; + + root /srv/www/gitweb; + + 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 ^()(/?.+)$; + + include fastcgi_params; + fastcgi_pass unix:/var/run/fcgiwrap.sock; + } + +} |