blob: f87c3a11bccc2b994759b77f7f860309c5ae1315 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#
# mod_passenger
#
LoadModule passenger_module @baselibdir@/httpd/modules/mod_passenger.so
<IfModule mod_passenger.c>
PassengerRoot @passengerdir@
PassengerDefaultRuby /usr/bin/ruby
</IfModule>
#
# 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 DocumentRoot to 'public'!
# DocumentRoot /somewhere/public
# <Directory /somewhere/public>
# # This relaxes Apache security settings.
# AllowOverride all
# # MultiViews must be turned off.
# Options -MultiViews
#
# Require all granted
# </Directory>
#</VirtualHost>
#
# And that's it! You may also want to check the Users Guide for security and
# optimization tips, troubleshooting and other useful information:
#
# https://www.phusionpassenger.com/documentation/Users%20guide%20Apache.html
#
|