“Cara Membuat Virtual host di Centos 8 untuk Pemula”
Untuk menghubungkan domain dengan VPS di perlukan membuat virtualhost di dalam webserver .
Kamu bisa ikuti tutorial sebelumnya untuk install apache di server mu.
Persiapan
- Install apache
- siapkan misal 2 domain games.com dan tiket.com
- ke 2 domain tersebut sudah di pointing ke IP Server
Cara Membuat virtualhost di Centos 8
- Membuat direectory dan index.html
cd /var/www mkdir games.com tiket.com echo "<h1>games.com</h1>" > games.com/index.html echo "<h1>tiket.com</h1>" > tiket.com/index.html
- Configurasi apache untuk games.com
cd /etc/httpd/conf.d/ vi games.conf
Isi file nya
<VirtualHost *:80> ServerName www.games.com ServerAlias games.com DocumentRoot /var/www/games.com <Directory /var/www/games.com> Options Indexes FollowSymLinks MultiViews AllowOverride All Require all granted </Directory> ErrorLog /var/log/httpd/games.com_error.log CustomLog /var/log/httpd/games.com_access.log combined </VirtualHost>
- Configurasi apache untuk domain tiket.com
cd /etc/httpd/conf.d/ vi tiket.conf
<VirtualHost *:80> ServerName www.tiket.com ServerAlias tiket.com DocumentRoot /var/www/tiket.com <Directory /var/www/tiket.com> Options Indexes FollowSymLinks MultiViews AllowOverride All Require all granted </Directory> ErrorLog /var/log/httpd/tiket.com_error.log CustomLog /var/log/httpd/tiket.com_access.log combined </VirtualHost>
- Restart service apache
systemctl restart httpd systemctl status httpd
- Test akses domain
Sahabat Blog Learning & Doing demikianlah penjelasan mengenai Cara Membuat Virtual host di Centos 8 untuk Pemula. Semoga Bermanfaat . Sampai ketemu lagi di postingan berikut nya.
(Visited 341 times, 1 visits today)