Site icon Learning & Doing

Cara Membuat Virtual host di Centos 8 untuk Pemula

apache

“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

Cara Membuat virtualhost di Centos 8

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
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>    
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>    
systemctl restart httpd  
systemctl status httpd  

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.

Exit mobile version