95 lines
2.9 KiB
Text
95 lines
2.9 KiB
Text
<% if @domain -%>
|
|
#
|
|
# ServerAdmin: Your address, where problems with the server should be
|
|
# e-mailed. This address appears on some server-generated pages, such
|
|
# as error documents. e.g. admin@your-domain.com
|
|
#
|
|
ServerAdmin adm@<%= @domain %>
|
|
<% end -%>
|
|
|
|
#
|
|
# ServerName gives the name and port that the server uses to identify itself.
|
|
# This can often be determined automatically, but we recommend you specify
|
|
# it explicitly to prevent problems during startup.
|
|
#
|
|
# If this is not set to valid DNS name for your host, server-generated
|
|
# redirections will not work. See also the UseCanonicalName directive.
|
|
#
|
|
# If your host doesn't have a registered DNS name, enter its IP address here.
|
|
# You will have to access it by its address anyway, and this will make
|
|
# redirections work in a sensible way.
|
|
#
|
|
ServerName <%= @homename %>
|
|
|
|
#
|
|
# UseCanonicalName: Determines how Apache constructs self-referencing
|
|
# URLs and the SERVER_NAME and SERVER_PORT variables.
|
|
# When set "Off", Apache will use the Hostname and Port supplied
|
|
# by the client. When set "On", Apache will use the value of the
|
|
# ServerName directive.
|
|
#
|
|
UseCanonicalName Off
|
|
|
|
#
|
|
# Optionally add a line containing the server version and virtual host
|
|
# name to server-generated pages (internal error documents, FTP directory
|
|
# listings, mod_status and mod_info output etc., but not CGI generated
|
|
# documents or custom error documents).
|
|
# Set to "EMail" to also include a mailto: link to the ServerAdmin.
|
|
# Set to one of: On | Off | EMail
|
|
#
|
|
ServerSignature Off
|
|
|
|
#
|
|
# Each directory to which Apache has access can be configured with respect
|
|
# to which services and features are allowed and/or disabled in that
|
|
# directory (and its subdirectories).
|
|
#
|
|
# First, we configure the "default" to be a very restrictive set of
|
|
# features.
|
|
#
|
|
<Directory />
|
|
Options FollowSymLinks
|
|
AllowOverride None
|
|
</Directory>
|
|
|
|
#
|
|
# Note that from this point forward you must specifically allow
|
|
# particular features to be enabled - so if something's not working as
|
|
# you might expect, make sure that you have specifically enabled it
|
|
# below.
|
|
#
|
|
|
|
#
|
|
# This should be changed to whatever you set DocumentRoot to.
|
|
#
|
|
<Directory "/srv/www">
|
|
|
|
#
|
|
# Possible values for the Options directive are "None", "All",
|
|
# or any combination of:
|
|
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
|
|
#
|
|
# Note that "MultiViews" must be named *explicitly* --- "Options All"
|
|
# doesn't give it to you.
|
|
#
|
|
# The Options directive is both complicated and important. Please see
|
|
# http://httpd.apache.org/docs/2.2/mod/core.html#options
|
|
# for more information.
|
|
#
|
|
Options FollowSymLinks
|
|
|
|
#
|
|
# AllowOverride controls what directives may be placed in .htaccess files.
|
|
# It can be "All", "None", or any combination of the keywords:
|
|
# Options FileInfo AuthConfig Limit
|
|
#
|
|
AllowOverride None
|
|
|
|
#
|
|
# Controls who can get stuff from this server.
|
|
#
|
|
Order allow,deny
|
|
Allow from all
|
|
|
|
</Directory>
|