Skip to content

Instantly share code, notes, and snippets.

@scarolan
Forked from johnfitzpatrick/custom.erb.txt
Created April 29, 2014 13:42
Show Gist options
  • Save scarolan/11400770 to your computer and use it in GitHub Desktop.
Save scarolan/11400770 to your computer and use it in GitHub Desktop.
<% if @port != 80 -%>
Listen <%= @port %>
<% end -%>
<VirtualHost *:<%= @port %>>
ServerAdmin webmaster@localhost
DocumentRoot <%= @document_root %>
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory <%= @document_root %>>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
</VirtualHost>
@scarolan
Copy link
Author

Fixed the typo on line 13.

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