summaryrefslogtreecommitdiff
path: root/etc/nginx-sites-enabled/git.site
blob: c1942023c8e3a279f8872b1daf7cfd47a05ce07e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
server {
	listen   80; ## listen for ipv4; this line is default and implied
	# listen   [::]:80 default_server ipv6only=on; ## listen for ipv6

	root /var/git;
	# Make site accessible from http://localhost/
	server_name git.taler.net;

	location / {
	    autoindex off;
	}
}