# machine always knows itself by this address. If you use Apache strictly for
# local testing and development, you may use 127.0.0.1 as the server name.
#
-#ServerName new.host.name
+#ServerName www.example.com
#
# DocumentRoot: The directory out of which you will serve your
# N.B.: You can redirect to a script or a document using server-side-includes.
#
# 3) external redirects
-#ErrorDocument 402 http://some.other-server.com/subscription_info.html
+#ErrorDocument 402 http://www.example.com/subscription_info.html
# N.B.: Many of the environment variables associated with the original
# request will *not* be available to such a script.
#
# Allow server status reports, with the URL of http://servername/server-status
-# Change the ".your-domain.com" to match your domain to enable.
+# Change the ".example.com" to match your domain to enable.
#
#<Location /server-status>
# SetHandler server-status
# Order deny,allow
# Deny from all
-# Allow from .your-domain.com
+# Allow from .example.com
#</Location>
#
# Allow remote server configuration reports, with the URL of
# http://servername/server-info (requires that mod_info.c be loaded).
-# Change the ".your-domain.com" to match your domain to enable.
+# Change the ".example.com" to match your domain to enable.
#
#<Location /server-info>
# SetHandler server-info
# Order deny,allow
# Deny from all
-# Allow from .your-domain.com
+# Allow from .example.com
#</Location>
#
# e-mailed. This address appears on some server-generated pages, such
# as error documents.
#
-ServerAdmin someone@somewhere.com
+ServerAdmin you@example.com
#
# ServerName allows you to set a host name which is sent back to clients for
# N.B.: You can redirect to a script or a document using server-side-includes.
#
# 3) external redirects
-#ErrorDocument 402 http://some.other-server.com/subscription_info.html
+#ErrorDocument 402 http://www.example.com/subscription_info.html
# N.B.: Many of the environment variables associated with the original
# request will *not* be available to such a script.
#
# Allow server status reports, with the URL of http://servername/server-status
-# Change the ".your-domain.com" to match your domain to enable.
+# Change the ".example.com" to match your domain to enable.
#
<IfModule mod_status.c>
<Location /server-status>
SetHandler server-status
Order deny,allow
Deny from all
- Allow from .your-domain.com
+ Allow from .example.com
</Location>
</IfModule>
#
# Allow remote server configuration reports, with the URL of
# http://servername/server-info (requires that mod_info.c be loaded).
-# Change the ".your-domain.com" to match your domain to enable.
+# Change the ".example.com" to match your domain to enable.
#
<IfModule mod_info.c>
<Location /server-info>
SetHandler server-info
Order deny,allow
Deny from all
- Allow from .your-domain.com
+ Allow from .example.com
</Location>
</IfModule>
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
#
-#<VirtualHost ip.address.of.host.some-domain.com>
-# ServerAdmin webmaster@host.some-domain.com
-# DocumentRoot /www/docs/host.some-domain.com
-# ServerName host.some-domain.com
-# ErrorLog logs/host.some-domain.com-error_log
-# CustomLog logs/host.some-domain.com-access_log common
+#<VirtualHost ip.address.of.host.example.com>
+# ServerAdmin webmaster@host.example.com
+# DocumentRoot /www/docs/host.example.com
+# ServerName host.example.com
+# ErrorLog logs/host.example.com-error_log
+# CustomLog logs/host.example.com-access_log common
#</VirtualHost>
#<VirtualHost _default_:*>