Explorer
/lib/python3/dist-packages/certbot_nginx/_internal/tests/testdata/etc_nginx/foo.conf
← Zurück ↓ Download
# 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$ {}

    }
}