O módulo de fluxo está sendo adicionado como dinâmico, conforme:
--with-stream=dynamic
Você precisa que ele seja 'estático' - então carregue o módulo diretamente. Para fazer isso, adicione o seguinte na parte superior do seu nginx.conf:
load_module /usr/lib/nginx/modules/ngx_stream_module.so;
Então:
nginx -t
Se tudo estiver bem:
nginx -s reload
service nginx restart
Editar:
-s signal' Send signal to the master process. The argument signal can be one of: stop, quit, reopen, reload. The following table shows the corresponding system signals.
stop' SIGTERM
quit' SIGQUIT
reopen' SIGUSR1
reload' SIGHUP