Instantly share code, notes, and snippets.

Embed
What would you like to do?
Kibana on Passenger
LoadModule passenger_module /usr/lib/ruby/gems/1.8/gems/passenger-3.0.11/ext/apache2/mod_passenger.so
PassengerRoot /usr/lib/ruby/gems/1.8/gems/passenger-3.0.11
PassengerRuby /usr/bin/ruby
<VirtualHost *:80>
ServerName logs.example.com
ServerAlias logs.example.com
DocumentRoot /home/httpd/Kibana/static
HostnameLookups Off
UseCanonicalName Off
ServerSignature On
<Directory "/home/httpd/Kibana/static">
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
@timconradinc

This comment has been minimized.

Show comment
Hide comment
@timconradinc

timconradinc Mar 31, 2013

It should be /public and not /static

timconradinc commented Mar 31, 2013

It should be /public and not /static

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment