f-stack/app/nginx-1.11.10
logwang e340d433ea Nginx: fix crash when server configuration item [`kernel_network_stack`] is on and uses `proxy_pass`.
When nginx is configured like this:
```
server {
    listen       8000;
    kernel_network_stack on;
    location / {
        proxy_pass http://127.0.0.1:8080/;
    }
}
```
nginx will crash, becasue kernel network stack is handled in a single thread, but we have hijacked all the socket apis, it causes that all apis enter to f-stack's path which is in main thread.
2018-01-11 18:20:41 +08:00
..
auto rename module module ff_channel to ff_host_event 2017-12-09 14:55:48 +08:00
conf Nginx: support kernel network stack, so we can do what fstack can't do, 2017-12-08 18:32:08 +08:00
contrib init 2017-04-21 18:43:26 +08:00
html init 2017-04-21 18:43:26 +08:00
man init 2017-04-21 18:43:26 +08:00
src Nginx: fix crash when server configuration item [`kernel_network_stack`] is on and uses `proxy_pass`. 2018-01-11 18:20:41 +08:00
CHANGES init 2017-04-21 18:43:26 +08:00
CHANGES.ru init 2017-04-21 18:43:26 +08:00
LICENSE init 2017-04-21 18:43:26 +08:00
README init 2017-04-21 18:43:26 +08:00
configure Fix #3: Compiling errors on Ubuntu. 2017-05-08 18:15:46 +08:00

README

Documentation is available at http://nginx.org