Bila server anda memiliki IPv6 silahkan coba tambahkan virtualhost ipv6 untuk domain anda, berikut ini contoh penambahan ipv6 untuk indounix.com

<VirtualHost [2607:f130:0:35::2]:80>
	ServerAdmin kambing@indounix.com
	ServerName indounix.com
	DocumentRoot /var/www/kambing
	<Directory />
		Options FollowSymLinks
		AllowOverride None
	</Directory>
	<Directory /var/www/kambing>
		Options -Indexes FollowSymLinks MultiViews
		AllowOverride All
		Order allow,deny
		allow from all
	</Directory>
        ErrorLog ${APACHE_LOG_DIR}/error.log
        # Possible values include: debug, info, notice, warn, error, crit,
        # alert, emerg.
        LogLevel warn
        CustomLog ${APACHE_LOG_DIR}/access.log combined	
</VirtualHost>

dimana 2607:f130:0:35::2 adalah ipv6 dari server anda, ganti dengan ipv6 anda :). Selanjutnya jangan lupa untuk menambahkan record AAAA di dns untuk domain anda tersebut. Setelah selesai coba restart/reload apache anda. Dan test hasilnya di ipv6-test.com
testing ipv6

Leave a comment

Your email address will not be published. Required fields are marked *