Custom Query (2297 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (40 - 42 of 2297)

Ticket Resolution Summary Owner Reporter
#1526 duplicate Absolute redirect auto-triggered by location does not include port from Host header powerman@…
Description

I'm running nginx in a docker with config like this:

server {
    listen 443 ssl http2 default_server deferred;
    server_name _;
    ...
    location ^~ /dir/ {
        proxy_pass ...
    }
}

Problem is, response to https://localhost:8443/dir doesn't include port:

Location: https://localhost/dir/

Adding absolute_redirect off; worked around this issue, but I believe current behaviour is wrong and this use case should not require absolute_redirect off;.

I'm using nginx:alpine image.

Can be related to #1145 and #1000.

#398 worksforme a bug about config file test timlocus@…
Description

My Case: a upstream named "readingjoy" is not defined in nginx.conf,and there is a defined server use upstream "readingjoy",this is a wrong config. but sometime.when I run nginx -t ,the result is the one of 1.long time process,return nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful 2.fast time process,return nginx: [emerg] host not found in upstream "readingjoy" in /usr/local/nginx/conf/nginx.conf:98 nginx: configuration file /usr/local/nginx/conf/nginx.conf test failed this is a bug,right?

#2261 worksforme A case of Connection: keep-alive, Upgrade xinyanglbeijing@…
Description

nginx -v 1.14

kernel Linux ubuntu1804-dev-server-xinyang 4.15.0-20-generic #21-Ubuntu SMP Tue Apr 24 06:16:15 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux

Description: This case happened when I used firefox to get a websocket connection. If I uses chrome that works well.

Below is the http traffic.

Chrome (Works) GET URL HTTP/1.1 Host: host Connection: Upgrade <------------------ upgrade is in a separated line Pragma: no-cache Cache-Control: no-cache User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 Upgrade: websocket Origin: URI Sec-WebSocket-Version: 13 Accept-Encoding: gzip, deflate Accept-Language: en Cookie: XXX Sec-WebSocket-Key: XXXX Sec-WebSocket-Extensions: permessage-deflate; client_max_window_bits

===========================================================================

Firefox (doesn't work) GET URI HTTP/1.1 Host: host User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0 Accept: */* Accept-Language: en-US,en;q=0.5 Accept-Encoding: gzip, deflate Sec-WebSocket-Version: 13 Origin: XXXX Sec-WebSocket-Extensions: permessage-deflate Sec-WebSocket-Key: XXXX DNT: 1 Connection: keep-alive, Upgrade <------------------------- Here multiple values are in one line Cookie: XXXX Pragma: no-cache Cache-Control: no-cache Upgrade: websocket

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