Welcome to mirror list, hosted at ThFree Co, Russian Federation.

edge_cases.conf « etc_nginx « testdata « tests « certbot-nginx - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 477cb1c45c401ed7e08d5d56d0d39e9383fb9f03 (plain)
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
# This is not a valid nginx config file but it tests edge cases in valid nginx syntax

server {
  server_name simple;
}

server {
  server_name with.if;
  location ~ ^/services/.+$ {
        if ($request_filename ~* \.(ttf|woff)$) {
      add_header          Access-Control-Allow-Origin "*";
    }
  }
}

server {
  server_name with.complicated.headers;

  location ~* \.(?:gif|jpe?g|png)$ {

    add_header  Pragma public;
    add_header  Cache-Control  'public, must-revalidate, proxy-revalidate' "test,;{}" foo;
    blah  "hello;world";

    try_files   $uri @rewrites;
  }
}