Sha256: b197a88c9b2f9b4888da7be35e06fe56e3b3dfa74de00e154b53532b047aa061
Contents?: true
Size: 660 Bytes
Versions: 82
Compression:
Stored size: 660 Bytes
Contents
Bluepill.application("nginx", :log_file => "<%= @log_dir %>/bluepill-nginx.log") do |app| app.process("nginx") do |process| process.pid_file = "<%= @pid %>" process.working_dir = "<%= @working_dir %>" process.start_command = "<%= @src_binary %> -c <%= @nginx_dir %>/nginx.conf" process.stop_command = "kill -QUIT {{PID}}" process.restart_command = "kill -HUP {{PID}}" process.daemonize = true process.stdout = process.stderr = "<%= @log_dir %>/nginx.log" process.monitor_children do |child_process| child_process.stop_command = "kill -QUIT {{PID}}" end end end
Version data entries
82 entries across 82 versions & 3 rubygems