chef/cookbooks/apache2/templates/default/default-site.conf.erb
Greg Karékinian bdfb3a1afb Downgrade mysql cookbook for now
It doesn't play well with our current dev server setup
2017-06-16 22:44:57 +02:00

75 lines
2.3 KiB
Plaintext

<% if node['apache']['version'] != '2.4' -%>
NameVirtualHost *:<%= node['apache']['default_site_port'] %>
<% end -%>
<VirtualHost *:<%= node['apache']['default_site_port'] %>>
ServerAdmin <%= node['apache']['contact'] %>
DocumentRoot <%= node['apache']['docroot_dir'] %>/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory <%= node['apache']['docroot_dir'] %>/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
<% if node['apache']['version'] == '2.4' -%>
Require all granted
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
#RedirectMatch ^/$ /apache2-default/
<% elsif node['apache']['version'] == '2.2' -%>
Order allow,deny
Allow from all
<% end -%>
</Directory>
ScriptAlias /cgi-bin/ <%= node['apache']['cgibin_dir'] %>/
<Directory "<%= node['apache']['cgibin_dir'] %>">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
<% if node['apache']['version'] == '2.4' -%>
Require all granted
<% elsif node['apache']['version'] == '2.2' -%>
Order allow,deny
Allow from all
<% end -%>
</Directory>
ErrorLog <%= node['apache']['log_dir'] %>/<%= node['apache']['error_log'] %>
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel <%= node['apache']['log_level'] %>
CustomLog <%= node['apache']['log_dir'] %>/<%= node['apache']['access_log'] %> combined
ServerSignature On
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
<% if node['apache']['version'] == '2.2' -%>
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
<% elsif node['apache']['version'] == '2.4' -%>
Require ip 127.0.0.0/255.0.0.0
Require ip ::1/128
<% end -%>
</Directory>
<% if %w{ rhel fedora amazon }.include?(node['platform_family']) -%>
#
# This configuration file enables the default "Welcome"
# page if there is no default index page present for
# the root URL. To disable the Welcome page, comment
# out all the lines below.
#
<LocationMatch "^/+$">
Options -Indexes
ErrorDocument 403 /error/noindex.html
</LocationMatch>
<% end -%>
</VirtualHost>