passenger/apache-passenger.conf.in
openeuler-basic b709e568c9 init package
2020-03-06 16:35:54 +08:00

26 lines
898 B
Plaintext

### Begin automatically installed Phusion Passenger config snippet ###
<IfModule mod_passenger.c>
PassengerRoot @PASSENGERROOT@
PassengerRuby /usr/bin/ruby
PassengerInstanceRegistryDir /var/run/passenger-instreg
</IfModule>
### End automatically installed Phusion Passenger config snippet ###
# Deploying a web application: an example
# Suppose you have a web application in /somewhere. Add a virtual host to
# your Apache configuration file and set its DocumentRoot to /somewhere/public:
#
# <VirtualHost *:80>
# ServerName www.yourhost.com
# # Be sure to point to 'public'!
# DocumentRoot /somewhere/public
# <Directory /somewhere/public>
# # Relax Apache security settings
# AllowOverride all
# Require all granted
# # MultiViews must be turned off
# Options -MultiViews
# </Directory>
# </VirtualHost>