Skip to content

Instantly share code, notes, and snippets.

@Albert-IV
Created December 5, 2016 22:13
Show Gist options
  • Save Albert-IV/90175c6717ee20620bdfdf062463e07c to your computer and use it in GitHub Desktop.
Save Albert-IV/90175c6717ee20620bdfdf062463e07c to your computer and use it in GitHub Desktop.
# ************************************
# Default template in module puppetlabs-apache
# Managed by Puppet
# ************************************
NameVirtualHost *:80
<VirtualHost *:80>
ServerName suretybonds.dev
LoadModule passenger_module /usr/local/rvm/gems/ruby-2.1.2/gems/passenger-5.0.6/buildout/apache2/mod_passenger.so
<IfModule mod_passenger.c>
PassengerRoot /usr/local/rvm/gems/ruby-2.1.2/gems/passenger-5.0.6
PassengerDefaultRuby /usr/local/rvm/gems/ruby-2.1.2/wrappers/ruby
</IfModule>
DocumentRoot /vagrant/public
<Directory /vagrant/public>
Options -MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/apache2/suretybonds.dev_error.log
LogLevel warn
CustomLog /var/log/apache2/suretybonds.dev_access.log combined
ServerSignature Off
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment