Apache2 sunucumda birden fazla farklı web sitesi barındırmak istiyorum, ancak web sitelerinin dışarıdan erişilemeyen özel IP aralığımda içeride barındırılmasını ve dışarıda öyle olmasını sağlamak istiyorum:
localhost/drupal #<= takes me to a drupal page
localhost/wordpress #<= takes me to a wordpress page
localhost/somerandompage #<= takes me to another page
Kullanabileceğimi biliyorum. VirtualHost *:80
bunun gibi:
<VirtualHost *:80>
ServerName drupal
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/drupal.com
<Directory /var/www/drupal.com>
Options +Indexes
AllowOverride All
Order allow,deny
Allow from all
</Directory>
DirectoryIndex index.html index.php
LogLevel debug
ErrorLog ${APACHE_LOG_DIR}/drupal.com/error.log
CustomLog ${APACHE_LOG_DIR}/drupal.com/access.log combined
</VirtualHost>
İstediğim gibi web sitelerini barındırabilmemin bir yolu var mı?