This file is indexed.

/usr/share/doc/nginx-doc/examples/mailman is in nginx-doc 1.6.2-5+deb8u5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
##
#  File:
#    mailman
#  Description:
#    This file explains how to install MailMan and offers a nearly drop-in
#    model if MailMan was installed from Debian/Ubuntu repositories.
##

server {

	# This is the URI of your website. You can specify multiple sites to be
	# served by the same Drupal installation.
	server_name lists.DOMAIN.TLD;

	# This is the default MailMan root directory.
	root /usr/lib/cgi-bin;

	# If the request is exactly the server_name, then we need to redirect
	# the browser to the listinfo page. Notice the = for an exact match.
	location = / {
		rewrite ^ /mailman/listinfo permanent;
	}

	# Any requests need to be rewritten to /mailman/.
	# This happens only if no other location block matches.
	location / {
		rewrite ^ /mailman$uri;
	}

	# If /mailmain/ was part of the request, then we need to let python
	# handle the request.
	location /mailman/ {
		fastcgi_split_path_info (^/mailman/[^/]*)(.*)$;
		include fastcgi_params;
		fastcgi_param GATEWAY_INTERFACE CGI/1.1;
		fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
		fastcgi_param PATH_INFO $fastcgi_path_info;
		fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
		# fcgiwrap was used to create this socket.
		# See /usr/share/doc/nginx-doc/fcgiwrap
		fastcgi_pass unix:/tmp/cgi.socket;
	}

	# If a request was made for an image, we need to change the directory
	# that is beeing looked at. Nothing else is needed because the images
	# are static content.
	location /images/mailman {
		alias /var/lib/mailman/icons;
	}

	# If a request for /pipermail was made, we are still only dealing with
	# static content. The archives are at a different location and we need
	# to point at it. Because these are public, there's no issue in letting
	# them be browsed; autoindex is turned on to allow browsing.
	location /pipermail {
		alias /var/lib/mailman/archives/public;
		autoindex on;
	}
}