mirror of
https://github.com/nginx/nginx.git
synced 2024-12-05 06:19:01 +08:00
3352461916
If fastcgi_pass (or any look-alike that doesn't imply a default port) is specified as an IP literal (as opposed to a hostname), port absence was not detected at configuration time and could result in EADDRNOTAVAIL at run time. Fixed this in such a way that configs like http { server { location / { fastcgi_pass 127.0.0.1; } } upstream 127.0.0.1 { server 10.0.0.1:12345; } } still work. That is, port absence check is delayed until after we make sure there's no explicit upstream with such a name. |
||
---|---|---|
.. | ||
core | ||
event | ||
http | ||
misc | ||
mysql | ||
os |