...........................................................................................................................................................................................................................................................................................................................@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%PDF-1.5 MRK IS HERE %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 65.108.66.160 / Your IP : 216.73.217.50 Web Server : Apache System : Linux srv16.asso.com.ar 4.18.0-553.123.1.el8_10.x86_64 #1 SMP Tue May 5 04:00:43 EDT 2026 x86_64 User : alasaweborg ( 1047) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /etc/passenger/dev/ |
Upload File : |
#!/usr/bin/env ruby
# encoding: utf-8
# This script changes the bootstrap code for all Phusion Passenger commands,
# as well as the Nginx module config script, so that they work no
# matter which Ruby interpreter is currently in $PATH, and no matter how
# Phusion Passenger is packaged.
#
# The bootstrap code must not add ruby_libdir to $LOAD_PATH. The active Ruby
# can be *any* Ruby interpreter, maybe not even MRI. ruby_libdir belongs to
# a Ruby interpreter installed by the distribution, and the files in it may
# may be incompatible with the active Ruby.
type = ARGV.shift
if type == "--ruby"
ruby_libdir = ARGV.shift
BOOTSTRAP_CODE = %Q{
ENV["PASSENGER_LOCATION_CONFIGURATION_FILE"] = "#{ruby_libdir}/phusion_passenger/locations.ini"
begin
require 'rubygems'
rescue LoadError
end
require '#{ruby_libdir}/phusion_passenger'
}
elsif type == "--nginx-module-config"
bindir = ARGV.shift
BOOTSTRAP_CODE = %Q{
PASSENGER_CONFIG=#{bindir}/passenger-config
}
else
abort "Invalid type"
end
BOOTSTRAP_CODE.gsub!(/^ ( )?/, '').strip
ARGV.each do |filename|
File.open(filename, "r+") do |f|
text = f.read
text.sub!(
/^## Magic comment: begin bootstrap ##.*## Magic comment: end bootstrap \#\#$/m,
BOOTSTRAP_CODE)
f.rewind
f.truncate(0)
f.write(text)
end
end