To list modules compiled with nginx, you can run nginx -V
nginx -V
This print nginx version along with configuration used to compile nginx.
If you want just the list of modules, you can use following command
nginx -V 2>&1 | tr -- - '\n' | grep _module
Example
See Nginx
Leave a Reply