1

Is there any nginx plugin that can display the stats that normal mod_status is displaying, but per vhost?

Thanks.

MihaiM
  • 708
  • 1
  • 8
  • 17

1 Answers1

5

Sorry bump old post, but now you can use this module to see traffic status per vhost

https://github.com/vozlt/nginx-module-vts

You need to manually re-compile your nginx, and add this block to your site config

    location /status {
        vhost_traffic_status_display;
        vhost_traffic_status_display_format html;
    }
Ferri Sutanto
  • 166
  • 1
  • 3