http monitoring with God

A few more line to the monitoring of yesterday […] w.restart_if do |restart| restart.condition(:http_response_code) do |c| c.host = ‘localhost’ c.port = port c.path = ‘/’ c.code_is_not = 200 c.timeout = 3.seconds c.times = [2, 5] end...

still this performance issue

Unfortunately my previous solution was only temporary, after a while I mentioned that mongrels are eating the memory and hanging. What is sure is that rails is using up to too much memory and crashes, it even seams to be a known problem, (wonder why I have not found...

Drupal on nginx

I already shared some nginx configuration for PHP, but here is one for Drupal. server ~ / $ cat /etc/nginx/sites-available/drupal.conf server { listen 80; server_name DOMAIN; error_log logs/DOMAIN-error.log; access_log logs/comDOMAIN-access.log main;...

redmine on nginx with mongrel_cluster

The webrick of redmine has couple of performance issues, so I was looking for an alternative solution to avoid the use of Apache and its proxy features. As already I use nginx it was clear to use it. The proxy is working perfectly with proxy_pass to the webrick, but...

wordpress rewrite for nginx

Following the my previous post on nginx and php for the search engine friendly URL edit the virtualhost nginx config file and a localtion server ~/ $ cat /etc/nginx/sites-available/default.conf server { listen 80 default; server_name _; access_log...