Skip to content

Instantly share code, notes, and snippets.

@johnfitzpatrick
Created January 2, 2015 14:52
Show Gist options
  • Select an option

  • Save johnfitzpatrick/97c5f7bc95f23efc1839 to your computer and use it in GitHub Desktop.

Select an option

Save johnfitzpatrick/97c5f7bc95f23efc1839 to your computer and use it in GitHub Desktop.
<% if @port != node["apache"]["port"] %>
Listen <%= @port %>
<% end %>
<VirtualHost *:<%= @port %>>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/web0<%= @web_server_id %>
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/html/web0<%= @web_server_id %>>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment