I am currently running a Wordpress website using php-fpm and nginx and have it using extremely high cpu rates. 
Here is my www.conf file:
[www] user = www-data group = www-data listen = 127.0.0.1:9000 listen.owner = www-data listen.group = www-data pm = ondemand pm.max_children = 10 pm.start_servers = 20 pm.min_spare_servers = 10 pm.max_spare_servers = 30 pm.process_idle_timeout = 10s ping.path = /ping pm.status_path = /status pm.max_requests = 30 request_terminate_timeout = 20 I am using wp total cache and fastcgi. Any files you know I can find I can show.
My website gets around 800 views a day and it having content added around 5-6 times a day.

