Difference between revisions of "Konfigurasi Sederhana Virtual Host di Apache"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Silfianaelfa (talk | contribs) |
||
Line 1: | Line 1: | ||
Biasanya akan menarik untuk membuat [[Virtual Host]] sehingga di sebuah mesin ada beberapa mesin / [[Web]] yang berjalan sekaligus. Contoh konfigurasi [[Virtual Host]] adalah | Biasanya akan menarik untuk membuat [[Virtual Host]] sehingga di sebuah mesin ada beberapa mesin / [[Web]] yang berjalan sekaligus. Contoh konfigurasi [[Virtual Host]] adalah | ||
− | # vi /etc/apache2/sites- | + | # vi /etc/apache2/sites-enabled/000-default |
Tambahan entry untuk masing-masing mesin / host kira-kira sebagai berikut | Tambahan entry untuk masing-masing mesin / host kira-kira sebagai berikut | ||
− | <VirtualHost *> | + | NameVirtualHost *:80 |
+ | |||
+ | <VirtualHost *:80> | ||
ServerAdmin webmaster@localhost | ServerAdmin webmaster@localhost | ||
ServerName forum.domainanda.com | ServerName forum.domainanda.com | ||
Line 17: | Line 19: | ||
</VirtualHost> | </VirtualHost> | ||
+ | edit file /etc/apache2/ports.conf | ||
+ | hapus kalimat 'NameVirtualHost *:80' | ||
==Referensi== | ==Referensi== |
Revision as of 10:44, 31 October 2011
Biasanya akan menarik untuk membuat Virtual Host sehingga di sebuah mesin ada beberapa mesin / Web yang berjalan sekaligus. Contoh konfigurasi Virtual Host adalah
# vi /etc/apache2/sites-enabled/000-default
Tambahan entry untuk masing-masing mesin / host kira-kira sebagai berikut
NameVirtualHost *:80 <VirtualHost *:80> ServerAdmin webmaster@localhost ServerName forum.domainanda.com DocumentRoot /var/www/forum <Directory /var/www/forum/> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all </Directory> </VirtualHost>
edit file /etc/apache2/ports.conf hapus kalimat 'NameVirtualHost *:80'
Referensi
- http://httpd.apache.org/docs/ - dokumentasi apache