This file is indexed.

/etc/ldap-account-manager/nginx.conf is in ldap-account-manager 6.2-1.

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
location /lam {
	index index.html;
	alias /usr/share/ldap-account-manager;
	autoindex off;

	location ~ \.php$ {
		include snippets/fastcgi-php.conf;
		fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
		fastcgi_param SCRIPT_FILENAME $request_filename;
	}

	location ~ /lam/(tmp/internal|sess|config|lib|help|locale) {
		deny all;
		return 403;
	}

}