Difference between revisions of "IPv6: Orek-orekan"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
== Apache2 == | == Apache2 == | ||
− | * | + | * Konfigurasi file port.conf untuk IPv6. |
# If you just change the port or add more ports here, you will likely also | # If you just change the port or add more ports here, you will likely also | ||
# have to change the VirtualHost statement in | # have to change the VirtualHost statement in | ||
Line 11: | Line 11: | ||
Listen [2001:470:36:8b5::1]:80 | Listen [2001:470:36:8b5::1]:80 | ||
NameVirtualHost [2001:470:36:8b5::1]:80 | NameVirtualHost [2001:470:36:8b5::1]:80 | ||
+ | |||
+ | |||
+ | * Konfigurasi file port.conf untuk dual stack (IPv4 dan IPv6). | ||
+ | |||
+ | # If you just change the port or add more ports here, you will likely also | ||
+ | # have to change the VirtualHost statement in | ||
+ | # /etc/apache2/sites-enabled/000-default | ||
+ | # This is also true if you have upgraded from before 2.2.9-3 (i.e. from | ||
+ | # Debian etch). See /usr/share/doc/apache2.2-common/NEWS.Debian.gz and | ||
+ | # README.Debian.gz | ||
+ | |||
+ | Listen [2001:470:36:8b5::1]:80 | ||
+ | NameVirtualHost [2001:470:36:8b5::1]:80 | ||
+ | |||
+ | Listen 192.168.0.1:80 | ||
+ | NameVirtualHost 192.168.0.1:80 |
Revision as of 13:48, 17 June 2013
Apache2
- Konfigurasi file port.conf untuk IPv6.
# If you just change the port or add more ports here, you will likely also # have to change the VirtualHost statement in # /etc/apache2/sites-enabled/000-default # This is also true if you have upgraded from before 2.2.9-3 (i.e. from # Debian etch). See /usr/share/doc/apache2.2-common/NEWS.Debian.gz and # README.Debian.gz
Listen [2001:470:36:8b5::1]:80 NameVirtualHost [2001:470:36:8b5::1]:80
- Konfigurasi file port.conf untuk dual stack (IPv4 dan IPv6).
# If you just change the port or add more ports here, you will likely also # have to change the VirtualHost statement in # /etc/apache2/sites-enabled/000-default # This is also true if you have upgraded from before 2.2.9-3 (i.e. from # Debian etch). See /usr/share/doc/apache2.2-common/NEWS.Debian.gz and # README.Debian.gz
Listen [2001:470:36:8b5::1]:80 NameVirtualHost [2001:470:36:8b5::1]:80
Listen 192.168.0.1:80 NameVirtualHost 192.168.0.1:80