- Back to Home »
- ILJ with Ubuntu »
- Konfigurasi Web Server: Virtual Host Menggunakan APACHE2, PHP5, & MSQL Server Pada Linux Ubuntu 14.04 LTS.
Konfigurasi Web Server: Virtual Host Menggunakan APACHE2, PHP5, & MSQL Server Pada Linux Ubuntu 14.04 LTS.
Posted by : Muhamad Ilyas Nugraha
Rabu, 11 Februari 2015
1.Pertama kita install terlebih dahulu APACHE2, PHP5 & MSQL server nya
#apt-get install apache2
#apt-get install php5
#apt-get install mysql-server
#apt-get install php5-mysql
2.Ketentuan
- IP Address Web Server : 172.17.11.34/27
- IP Address Dns Server : 172.17.11.34/27
<VirtualHost *:80>
ServerName marketing.[nama_anda].com
ServerAdmin admin@[nama_anda].com
DocumentRoot /var/www/marketing
</VirtualHost>
<Directory “/var/www/marketing”>
Options Indexes FollowSymLinks MultiViews ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<VirtualHost *:80>
ServerName it.[nama_anda].com
ServerAdmin admin@[nama_anda].com
DocumentRoot /var/www/it
</VirtualHost>
<Directory “/var/www/it”>
Options Indexes FollowSymLinks MultiViews ExecCGI
AllowOverride All
Order allow,deny
Allow from 192.168.98.135
Allow from 10.10.10.0/24
</Directory>
4.Buatlah direktori marketing dan it dibawah direktori /var/www
5. Pada direktori /var/www/marketing, buat file “index.php” dengan isi sebagi berikut :
<html>
<body>
<h1>Web Punya Divisi Marketing</h1>
</body>
</html>
6.Pada direktori /var/www/it, buat file “index.php” dengan isi sebagi berikut :
<html>
<body>
<h1>Web Punya Divisi IT</h1>
</body>
</html>
Pengamatan
Pada client gunakan browser untuk mengakses marketing.ilyas.com dan it.ilyas.com
Apa yang terjadi?
yang terjadi adalah: