raimund@256: # raimund@256: # Copyright (c) 2011 by Intevation GmbH, Germany raimund@256: # raimund@256: # This file is part of MXD2map. raimund@256: # raimund@256: # This program is free software under the LGPL (>=v2.1) raimund@256: # Read the file LICENCE.txt coming with the software for details raimund@256: # or visit http://www.gnu.org/licenses/ if it does not exist. raimund@256: # raimund@256: # MXD2map has been developed on behalf of the raimund@256: # Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg raimund@256: # by Intevation GmbH. raimund@256: # raimund@256: # Authors: raimund@256: # Raimund Renkert raimund@256: # Bjoern Schilberg raimund@256: # Stephan Holl raimund@256: bjoern@1: # bjoern@1: # VirtualHost template bjoern@1: # Note: to use the template, rename it to /etc/apache2/vhost.d/yourvhost.conf. bjoern@1: # Files must have the .conf suffix to be loaded. bjoern@1: # bjoern@1: # See /usr/share/doc/packages/apache2/README.QUICKSTART for further hints bjoern@1: # about virtual hosts. bjoern@1: # bjoern@1: # NameVirtualHost statements can be added to /etc/apache2/listen.conf. bjoern@1: # bjoern@1: # Almost any Apache directive may go into a VirtualHost container. bjoern@1: # The first VirtualHost section is used for requests without a known bjoern@1: # server name. bjoern@1: # bjoern@1: bjoern@1: ServerAdmin webmaster@dummy-host.example.com bjoern@1: ServerName dummy-host.example.com bjoern@1: bjoern@1: # DocumentRoot: The directory out of which you will serve your bjoern@1: # documents. By default, all requests are taken from this directory, but bjoern@1: # symbolic links and aliases may be used to point to other locations. bjoern@3: DocumentRoot /home/intevation/mxd-testbed/web bjoern@1: bjoern@1: # if not specified, the global error log is used bjoern@3: ErrorLog /var/log/apache2/mxd-testbed_error.log bjoern@3: CustomLog /var/log/apache2/mxd-testbed_access.log combined bjoern@1: bjoern@1: # don't loose time with IP address lookups bjoern@1: HostnameLookups Off bjoern@1: bjoern@1: # needed for named virtual hosts bjoern@1: UseCanonicalName Off bjoern@1: bjoern@1: # configures the footer on server-generated documents bjoern@1: ServerSignature On bjoern@1: bjoern@1: bjoern@1: # Optionally, include *.conf files from /etc/apache2/conf.d/ bjoern@1: # bjoern@1: # For example, to allow execution of PHP scripts: bjoern@1: # bjoern@1: # Include /etc/apache2/conf.d/mod_php4.conf bjoern@1: # bjoern@1: # or, to include all configuration snippets added by packages: bjoern@1: # Include /etc/apache2/conf.d/*.conf bjoern@1: bjoern@1: bjoern@1: # ScriptAlias: This controls which directories contain server scripts. bjoern@1: # ScriptAliases are essentially the same as Aliases, except that bjoern@1: # documents in the realname directory are treated as applications and bjoern@1: # run by the server when requested rather than as documents sent to the client. bjoern@1: # The same rules about trailing "/" apply to ScriptAlias directives as to bjoern@1: # Alias. bjoern@1: # bjoern@3: ScriptAlias /cgi-bin/ "/srv/www/cgi-bin/" bjoern@1: bjoern@1: # "/srv/www/cgi-bin" should be changed to whatever your ScriptAliased bjoern@1: # CGI directory exists, if you have one, and where ScriptAlias points to. bjoern@1: # bjoern@3: bjoern@1: AllowOverride None bjoern@3: Options +ExecCGI -Includes +FollowSymLinks bjoern@1: Order allow,deny bjoern@1: Allow from all bjoern@3: bjoern@1: bjoern@1: bjoern@1: bjoern@1: bjoern@1: # bjoern@1: # This should be changed to whatever you set DocumentRoot to. bjoern@1: # bjoern@3: bjoern@1: bjoern@1: # bjoern@1: # Possible values for the Options directive are "None", "All", bjoern@1: # or any combination of: bjoern@1: # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews bjoern@1: # bjoern@1: # Note that "MultiViews" must be named *explicitly* --- "Options All" bjoern@1: # doesn't give it to you. bjoern@1: # bjoern@1: # The Options directive is both complicated and important. Please see bjoern@1: # http://httpd.apache.org/docs-2.2/mod/core.html#options bjoern@1: # for more information. bjoern@1: # bjoern@1: Options Indexes FollowSymLinks bjoern@1: bjoern@1: # bjoern@1: # AllowOverride controls what directives may be placed in .htaccess files. bjoern@1: # It can be "All", "None", or any combination of the keywords: bjoern@1: # Options FileInfo AuthConfig Limit bjoern@1: # bjoern@1: AllowOverride None bjoern@1: bjoern@1: # bjoern@1: # Controls who can get stuff from this server. bjoern@1: # bjoern@1: Order allow,deny bjoern@1: Allow from all bjoern@1: bjoern@1: bjoern@1: bjoern@1: bjoern@1: