diff options
author | Axel Duch <axel.duch@nginx.com> | 2019-07-24 13:47:35 +0300 |
---|---|---|
committer | Axel Duch <axel.duch@nginx.com> | 2019-07-24 13:47:35 +0300 |
commit | 7785c96c1aea16dee0ec17403fda01b4f5ba41b3 (patch) | |
tree | 9abd736f0cfbfd6bea13685b1849ca4565dd1ce8 /src/nxt_http_request.c | |
parent | b1165d2edc99daf8eef0e092e4ed6dcee9bce252 (diff) | |
download | unit-7785c96c1aea16dee0ec17403fda01b4f5ba41b3.tar.gz unit-7785c96c1aea16dee0ec17403fda01b4f5ba41b3.tar.bz2 |
Added routing based on request scheme.
Scheme matches exact string “http” or “https”.
Diffstat (limited to 'src/nxt_http_request.c')
-rw-r--r-- | src/nxt_http_request.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nxt_http_request.c b/src/nxt_http_request.c index 1265c186..ce088acb 100644 --- a/src/nxt_http_request.c +++ b/src/nxt_http_request.c @@ -357,7 +357,6 @@ nxt_http_request_proto_info(nxt_task_t *task, nxt_http_request_t *r) { if (r->proto.any != NULL) { nxt_http_proto_local_addr[r->protocol](task, r); - nxt_http_proto_tls[r->protocol](task, r); } } |