Opened 8 years ago
Closed 8 years ago
#1373 closed task (fixed)
missing '=' in admin-guide/serving-static-content
| Reported by: | Owned by: | Yaroslav Zhuravlev | |
|---|---|---|---|
| Priority: | minor | Milestone: | |
| Component: | documentation | Version: | 1.13.x |
| Keywords: | Cc: | ||
| uname -a: | |||
| nginx -V: | nginx version: nginx/1.13.3 | ||
Description
In the admin-guide/serving-static-content[0] at the section 'Tuning NGINX' the example configuration faild.
Instead of:
server {
listen 80 backlog 4096;
# The rest of server configuration
}
it has to be:
server {
listen 80 backlog=4096;
# The rest of server configuration
}
as defined in the module reference[1]
[0] https://www.nginx.com/resources/admin-guide/serving-static-content/
[1] http://nginx.org/en/docs/http/ngx_http_core_module.html#listen
Change History (2)
comment:1 by , 8 years ago
| Owner: | set to |
|---|---|
| Status: | new → assigned |
comment:2 by , 8 years ago
| Resolution: | → fixed |
|---|---|
| Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.

Thanks, fixed.