Nagios with nginx over https

This is the nginx conf which worked for me for running Nagios3 with nginx over https, just putting it up here for needy folks like me. Considering following upstreams for php5-fpm and fcgiwrap: upstream php { server unix:/var/run/php5-fpm.sock; } upstream perl { server unix:/var/run/fcgiwrap.socket; } Assuming both php5-fpm and fcgiwrap for perl cgi are running,…