Changes between Initial Version and Version 1 of Ticket #384


Ignore:
Timestamp:
04/10/14 09:07:14 (10 years ago)
Author:
Sergey Kandaurov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #384 – Description

    initial v1  
    1 nginx should be changed to take server_name value with and without trailing dot as identical to each other. It shall warn and continue during configuration syntax check for the below snippet due to conflicting server_name "localhost.".
     1nginx should treat server_name values with and without trailing dot as identical to each other. Thus, it shall warn and continue during configuration syntax check for the below snippet due to conflicting server_name.
    22
    33{{{
    4         server_name  localhost localhost. something;
     4    server {
     5        server_name  localhost;
     6    }
     7
     8    server {
     9        server_name  localhost.;
     10    }
    511}}}