Changes between Initial Version and Version 1 of Ticket #384
- Timestamp:
- 04/10/14 09:07:14 (11 years ago)
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.".1 nginx 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. 2 2 3 3 {{{ 4 server_name localhost localhost. something; 4 server { 5 server_name localhost; 6 } 7 8 server { 9 server_name localhost.; 10 } 5 11 }}}