This file is indexed.

/usr/share/augeas/lenses/dist/tests/test_nginx.aug is in augeas-lenses 1.2.0-0ubuntu1.3.

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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
(*
Module: Test_Nginx
  Provides unit tests and examples for the <Nginx> lens.
*)
module Test_nginx = 

    let conf ="user nginx nginx;
worker_processes 1;
error_log /var/log/nginx/error_log info;

events {
        worker_connections 1024;
        use epoll;
}

# comment1
# comment2

http {
	# comment3
        include /etc/nginx/mime.types;
        default_type application/octet-stream;
        log_format main
                '$remote_addr - $remote_user [$time_local] '
                '\"$request\" $status $bytes_sent '
                '\"$http_referer\" \"$http_user_agent\" '
                '\"$gzip_ratio\"';
        client_header_timeout 10m;
        client_body_timeout 10m;
        send_timeout 10m;
        connection_pool_size 256;
        client_header_buffer_size 2k;
        large_client_header_buffers 4 8k;
        request_pool_size 4k;
        gzip on;
	gzip_min_length 1000;
        gzip_buffers 4 8k;
        gzip_types text/plain application/json;
        output_buffers 1 32k;
        postpone_output 1460;
        sendfile on;
        tcp_nopush on;
        tcp_nodelay on;
        keepalive_timeout 75 20;
        ignore_invalid_headers on;
        index index.html index.php;
        include vhosts/*.conf;
}
"

    test Nginx.lns get conf =
       { "user"  = "nginx nginx" }
       { "worker_processes"      = "1" }
       { "error_log" = "/var/log/nginx/error_log info" }
       {}
       { "events"
          { "worker_connections"  = "1024" }
          { "use"      = "epoll" } }
       {}
       { "#comment" = "comment1" }
       { "#comment" = "comment2" }
       {}
       { "http"
       	  { "#comment" = "comment3" }
          { "include"  = "/etc/nginx/mime.types" }
          { "default_type"  = "application/octet-stream" }
          { "log_format"      = "main
                '$remote_addr - $remote_user [$time_local] '
                '\"$request\" $status $bytes_sent '
                '\"$http_referer\" \"$http_user_agent\" '
                '\"$gzip_ratio\"'" }
          { "client_header_timeout"  = "10m" }
          { "client_body_timeout"  = "10m" }
          { "send_timeout"      = "10m" } 
          { "connection_pool_size"      = "256" } 
          { "client_header_buffer_size"      = "2k" } 
          { "large_client_header_buffers"      = "4 8k" } 
          { "request_pool_size"      = "4k" } 
          { "gzip"      = "on" } 
          { "gzip_min_length"      = "1000" } 
          { "gzip_buffers"      = "4 8k" } 
          { "gzip_types"      = "text/plain application/json" } 
          { "output_buffers"      = "1 32k" } 
          { "postpone_output"      = "1460" } 
          { "sendfile"      = "on" } 
          { "tcp_nopush"      = "on" } 
          { "tcp_nodelay"      = "on" } 
          { "keepalive_timeout"      = "75 20" } 
          { "ignore_invalid_headers"      = "on" } 
          { "index"      = "index.html index.php" } 
          { "include"      = "vhosts/*.conf" } }