nginx/src
Maxim Dounin 08a73b4aad Proxy: support for connection upgrade (101 Switching Protocols).
This allows to proxy WebSockets by using configuration like this:

    location /chat/ {
        proxy_pass http://backend;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
    }

Connection upgrade is allowed as long as it was requested by a client
via the Upgrade request header.
2013-02-18 13:50:52 +00:00
..
core Added support for {SHA} passwords (ticket #50). 2013-02-07 12:09:56 +00:00
event SSL: fixed ngx_ssl_handshake() with level-triggered event methods. 2013-02-01 14:37:43 +00:00
http Proxy: support for connection upgrade (101 Switching Protocols). 2013-02-18 13:50:52 +00:00
mail Implemented IPv6 support for URLs specified using domain names. 2012-12-17 12:08:53 +00:00
misc Fixed compilation with -Wmissing-prototypes. 2012-07-24 15:09:54 +00:00
mysql Copyright updated. 2012-01-18 15:07:43 +00:00
os Core: crypt_r() error handling fixed. 2012-12-21 16:13:03 +00:00