Custom Query (2297 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (46 - 48 of 2297)

Ticket Resolution Summary Owner Reporter
#1988 invalid nginx: [emerg] too long parameter, probably missing terminating "'" character aggarwal.sidh@…
Description

Hello Team,

I am getting this error when trying to reload my nginx conf file. I have multiple domain host file in site-enabled and when I try to reload its conf getting this error.

I am installing nginx-extras package for ubuntu (not compiling from source code)

#1121 invalid Unexpected listen directive behaviour when 'listen PORT' and 'listen IP:PORT' are used in configuration simultaneously. agugnin@…
Description

Way to reproduce:

server IP: 10.11.12.13

site1.com -> 10.11.12.13

site2.com -> 10.11.12.13

/etc/nginx/conf.d/virtualhosts.conf

server {
listen 10.11.12.13:80;
server_name site1.com;
root /var/www/site1.com/;
...
}

server {
listen 80;
server_name site2.com;
root /var/www/site2.com/;
...
}

Expected behaviour:

site2.com is being listened at all interfaces:

$ curl http://site1.com
Site1.com content
$ curl http://site2.com
Site2.com content

Actual behaviour:

site2.com is ignored on 10.11.12.13

$ curl http://site1.com
Site1.com content
$ curl http://site2.com
Site1.com content
#1038 wontfix Nginx doesn't retry to start worker process when fork() error Alexander Golovko
Description

If there are not enough memory when nginx reload config, it can't start new workers, but stop old workers. So it listen ports, but doesn't accept connections.

2016/08/02 19:13:52 [alert] 3712#3712: fork() failed while spawning "worker process" (12: Cannot allocate memory).

I think, that it should try to restart worker processes forever, like it do when worker process killed.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.