Grep nginx modules

normaly you can use grep easily with this command

 

nginx -V | grep -ith-http_stub_status_module

 

It better you use this command to see one line

nginx -V 2>&1 | grep -o with-http_stub_status_module

Leave a comment