Changeset 414
- Timestamp:
- 02/19/08 18:50:11 (11 months ago)
- Files:
-
- trunk/CHANGELOG (modified) (1 diff)
- trunk/lib/deprec/templates/monit/monit_mongrel.erb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/CHANGELOG
r412 r414 3 3 == 1.99.8 (Feb 18, 2008) 4 4 5 * added nginx_client_max_body_size setting for nginx rails vhost6 * bugfix: put correct path into monit_mongrel template5 * enhancement: added nginx_client_max_body_size setting for nginx rails vhost 6 * bugfix: monit config was broken 7 7 8 8 == 1.99.7 (Feb 18, 2008) trunk/lib/deprec/templates/monit/monit_mongrel.erb
r413 r414 1 1 <% mongrel_servers.times do |counter| -%> 2 check process mongrel-<%=8000+counter%> with pidfile <%=deploy_to%>/shared/ pids/mongrel.<%=8000+counter%>.pid2 check process mongrel-<%=8000+counter%> with pidfile <%=deploy_to%>/shared/tmp/pids/mongrel.<%=8000+counter%>.pid 3 3 group mongrel 4 start program = "/usr/local/bin/ruby /usr/local/bin/mongrel_rails start -d -e production -p <%=8000+counter%> -a 127.0.0.1 -P <%= deploy_to %>/shared/ pids/mongrel.<%=8000+counter%>.pid -c <%= deploy_to %>/current"5 stop program = "/usr/local/bin/ruby /usr/local/bin/mongrel_rails stop stop -P <%= deploy_to %>/shared/ pids/mongrel.<%=8000+counter%>.pid"4 start program = "/usr/local/bin/ruby /usr/local/bin/mongrel_rails start -d -e production -p <%=8000+counter%> -a 127.0.0.1 -P <%= deploy_to %>/shared/tmp/pids/mongrel.<%=8000+counter%>.pid -c <%= deploy_to %>/current" 5 stop program = "/usr/local/bin/ruby /usr/local/bin/mongrel_rails stop stop -P <%= deploy_to %>/shared/tmp/pids/mongrel.<%=8000+counter%>.pid" 6 6 7 7 if failed host 127.0.0.1 port <%=8000+counter%> protocol http
