OreyM
5/1/2019 - 11:59 AM

apache-httpd-vhosts.conf

NameVirtualHost *:80

<VirtualHost *:80>
    ServerName localhost
    ServerAdmin localhost@localhost
    DocumentRoot "/Users/oreym/domain/localhost"  
    ErrorLog "/Users/oreym/domain/localhost/error.log"
    <Directory "/Users/oreym/domain/localhost">
          Options Indexes FollowSymLinks
          AllowOverride All
          Order allow,deny
          Allow from all
    </Directory>
</VirtualHost>

<VirtualHost *:80>
    ServerName phpmyadmin
    ServerAdmin phpmyadmin@phpmyadmin
    DocumentRoot "/Users/oreym/domain/phpmyadmin"  
    ErrorLog "/Users/oreym/domain/phpmyadmin/phpmyadmin-error.log"
    <Directory "/Users/oreym/domain/phpmyadmin">
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
        Order allow,deny
        Allow from all
    </Directory>  
</VirtualHost>

<VirtualHost *:80>
    ServerName xparser.local
    ServerAdmin xparser@xparser.local
    DocumentRoot "/Users/oreym/domain/xparser.local"  
    ErrorLog "/Users/oreym/domain/xparser.local/xparser-error.log"
    <Directory "/Users/oreym/domain/xparser.local">
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
        Order allow,deny
        Allow from all
    </Directory>  
</VirtualHost>

<VirtualHost *:80>
    ServerName oreyshop.local
    ServerAdmin oreyshop@oreyshop.local
    DocumentRoot "/Users/oreym/domain/oreyshop.local"  
    ErrorLog "/Users/oreym/domain/oreyshop.local/oreyshop-error.log"
    <Directory "/Users/oreym/domain/oreyshop.local">
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
        Order allow,deny
        Allow from all
    </Directory>  
</VirtualHost>