Sha256: f97e0c476d7afdd7d64fcd46e2d2c455be1638e8bda8c2c516074d01534638d2

Contents?: true

Size: 1.11 KB

Versions: 21

Compression:

Stored size: 1.11 KB

Contents

ENV['CC']  ||= 'ccache cc'
ENV['CXX'] ||= 'ccache c++'

desc "Bootstrap Nginx for the first time"
task :bootstrap => :configure do
  sh "make -j2"
  sh "make install"
  sh "rm -f inst/sbin/nginx"
  puts
  puts "--------------------------"
  puts "You're all set! You can start Nginx by running:"
  puts
  puts "  ./start"
  puts
  puts "Nginx can be reached from the host machine on http://127.0.0.1:8100/"
  puts
  puts "You never have to run `rake bootstrap` again. You also never have to " +
    "run `make install`. If you've made changes to the Passenger Nginx module, " +
    "simply run `make && ./start` in /home/vagrant/nginx. The `start` script " +
    "will start the newly compiled Nginx binary directly."
end

desc "Configure Nginx source tree"
task :configure do
  sh "./configure --prefix=/home/vagrant/nginx/inst" +
    " --add-module=/vagrant/src/nginx_module" +
    " --with-http_ssl_module" +
    " --with-http_gzip_static_module" +
    " --with-http_stub_status_module" +
    " --with-http_v2_module" +
    " --with-ipv6" +
    " --with-debug"
  sh "sed", "-E", "-i", 's/ -O[0-9]? / -ggdb /g', "objs/Makefile"
end

Version data entries

21 entries across 21 versions & 2 rubygems

Version Path
passenger-5.2.3 dev/vagrant/nginx_rakefile
passenger-5.2.2 dev/vagrant/nginx_rakefile
passenger-5.2.1 dev/vagrant/nginx_rakefile
passenger-5.2.0 dev/vagrant/nginx_rakefile
passenger-5.1.12 dev/vagrant/nginx_rakefile
passenger-5.1.11 dev/vagrant/nginx_rakefile
passenger-5.1.10 dev/vagrant/nginx_rakefile
passenger-5.1.9 dev/vagrant/nginx_rakefile
passenger-5.1.8 dev/vagrant/nginx_rakefile
passenger-5.1.7 dev/vagrant/nginx_rakefile
passenger-5.1.6 dev/vagrant/nginx_rakefile
passenger-5.1.5 dev/vagrant/nginx_rakefile
passenger-5.1.4 dev/vagrant/nginx_rakefile
passenger-5.1.3 dev/vagrant/nginx_rakefile
passenger-5.1.2 dev/vagrant/nginx_rakefile
passenger-5.1.1 dev/vagrant/nginx_rakefile
passenger-5.1.0 dev/vagrant/nginx_rakefile
passenger-5.0.30 dev/vagrant/nginx_rakefile
passenger-5.0.29 dev/vagrant/nginx_rakefile
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/passenger-5.0.28/dev/vagrant/nginx_rakefile