File: foo.conf

package info (click to toggle)
python-certbot-nginx 0.28.0-1~deb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 628 kB
  • sloc: python: 4,190; makefile: 171
file content (25 lines) | stat: -rw-r--r-- 540 bytes parent folder | download | duplicates (6)
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
# a test nginx conf
user www-data;

http {
    server {
        listen   *:80 default_server ssl;
        server_name *.www.foo.com *.www.example.com;
        root /home/ubuntu/sites/foo/;

        location /status {
            types {
                image/jpeg jpg;
            }
        }

        location ~ case_sensitive\.php$ {
            index index.php;
            root /var/root;
        }
        location ~* case_insensitive\.php$ {}
        location = exact_match\.php$ {}
        location ^~ ignore_regex\.php$ {}

    }
}