• in /etc/httpd/conf/httpd.conf, uncomment NameVirtualHost
  • NameVirtualHost *:80
  • then, create files in /etc/httpd/conf.d/
  • vhost configuration files must have names ending in '.conf'
  • for example:
    <VirtualHost *:80 >
    ServerName fileprosucks.someserver.com
    DocumentRoot /home/jeremy/www/fileproflaws
    </VirtualHost >
  • <Directory /whatever> directives can also be added into this file.
  • NEXT
    PREVIOUS
    Master Index