add support for generic streams
This commit is contained in:
parent
4d82b39ef9
commit
41841311e6
4 changed files with 48 additions and 0 deletions
|
|
@ -3,6 +3,7 @@ worker_processes auto;
|
|||
pid /run/nginx.pid;
|
||||
|
||||
load_module /usr/lib/nginx/modules/ngx_http_headers_more_filter_module.so;
|
||||
load_module /usr/lib/nginx/modules/ngx_stream_module.so;
|
||||
|
||||
events {
|
||||
use epoll;
|
||||
|
|
@ -36,3 +37,8 @@ http {
|
|||
##
|
||||
include /etc/nginx/sites-enabled/*;
|
||||
}
|
||||
|
||||
stream {
|
||||
include /etc/nginx/conf.d/upstreams.conf;
|
||||
include /etc/nginx/streams/*;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue