This file is indexed.

/usr/share/doc/nginx-doc/examples/nginx.conf 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
##
#  File:
#    nginx.conf
#  Description:
#    Provides a very basic description of the use of nginx.conf.
##

# For more options with more detailed descriptions:
# See http://wiki.nginx.org/CoreModule

# Sets user/group of worker processes. If group is not specified, group is assumed
# to be the same as user. Syntax: user user [group]
user www-data;

# nginx has the ability to use more than one worker process
worker_processes 4;

# The pid-file. It can be used for the kill-command to send signals to nginx.
# Example: To reload the config: kill -HUP `cat /var/log/nginx.pid`
pid /var/run/nginx.pid;

# See http://wiki.nginx.org/HttpEventsModule
events {
    worker_connections 1024;
    # multi_accept on;
}

# See /usr/share/doc/nginx/examples/http
http {
}

# See /usr/share/doc/nginx/examples/mail
mail {
}