Including Multiple Server Blocks via wildcard

Cox, Eric S eric.cox at kroger.com
Tue Feb 14 20:08:22 UTC 2017


In my main nginx.conf file I am doing an include for various files to include multiple server blocks (1 block per file).... If I use a wildcard include the https servers break but the http server is fine.... Example....

include  /servers/*;

this would include 3 server blocks

1 http
2 https

If I include each file specifically the servers work fine (including both https server blocks) ANY IDEA WHY THIS WOULD BE? The server starts up fine but I just can't connect to the HTTPS endpoints (timeout)

.... Example

include  /servers/server1;
include  /servers/server2;
include  /servers/server3;

Each server file contains a while server block.... Example.....

server {
                                listen       443 ssl backlog=2048;
        server_name  server1.domain.com;

        ssl_certificate      /test.crt;
        ssl_certificate_key  /test.key;
        ssl_session_cache    shared:SSL:1m;
        ssl_session_timeout  5m;
        ssl_protocols       TLSv1.2;

        location / {
            root   /html;
        }

        include       /locations/*_conf;

        status_zone https_server1;

}


Thanks,
Eric



________________________________

This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain information that is confidential and protected by law from unauthorized disclosure. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply e-mail and destroy all copies of the original message.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20170214/5e9efdc6/attachment.html>


More information about the nginx mailing list