# IP-based virtual host # http://httpd.apache.org/docs/2.2/vhosts/ip-based.html # # IP-based virtual hosts are used if you need every request to a certain # IP address and port to be served from the same website, regardless of # the domain name. # Unless you really need this, you should use name-based virtual hosts instead. # This file is here to serve as an example. You should copy it and make changes # to it before you use it. You can name the file anything you want, as long as # it ends in .conf # # To make management easier, we suggest using a seperate file for every virtual # host you have, and naming the files like so: 00_www.example.com.conf # This will allow you to easily make changes to certain virtual hosts without # having to search through every file to find where it's defined at. # This is where you set what IP address and port that this virtual host is for # Make sure that you have a Listen directive that will match this. # Used for creating URLs back to itself ServerName example.com # DocumentRoot is the location where your files will be stored # # For gentoo, the suggested structure is: # # /var/www/ # domain.com/ # htdocs/ Files for the website itself # htdocs-secure/ Files available via HTTPS (requires seperate config) # cgi-bin/ Site-specific executable scripts (optional) # error/ Custom error pages for the website (optional) # icons/ Custom icons for the website (optional) # # You should also set the vhost USE-flag so that you can install webapps # easily to multiple virtual hosts # # Note that if you put the directory anywhere other then under /var/www # you may run into problems with suexec and cgi scripts. # DocumentRoot "/var/www/example.com/htdocs" # This should match the DocumentRoot above # Some sane defaults - see httpd.conf for details Options Indexes FollowSymLinks AllowOverride None Require all granted # By default cgi-bin points to the global cgi-bin in /var/www/localhost # If you want site specific executable scripts, then uncomment this section # # If you have enabled suexec, you will want to make sure that the cgi-bin # directory is owned by the user and group specified with SuexecUserGroup #ScriptAlias /cgi-bin/ "/var/www/example.com/cgi-bin/" # # AllowOverride None # Options None # Require all granted # # If you have multiple users on this system, each with their own vhost, # then it's a good idea to use suexec to seperate them. # # Set the user and group that scripts in this virtual host will run as. SuexecUserGroup billybob users # If you want custom error documents uncomment this section # See /etc/apache2/modules.d/00_error_documents.conf for the file # name to use for the various error types # # Alias /error/ "/var/www/example.com/error/" # # AllowOverride None # Options IncludesNoExec # AddOutputFilter Includes html # AddHandler type-map var # Require all granted # # # If you want to use custom icons for the website autoindexes, # then uncomment this section. #Alias /icons/ "/var/www/example.com/icons/" # # Options Indexes MultiViews # AllowOverride None # Require all granted # # Create a logfile for this vhost CustomLog /var/log/apache2/example.com.log combined # vim: ts=4 filetype=apache