Konfigurasi Sederhana Virtual Host di Apache: Difference between revisions

From OnnoCenterWiki
Jump to navigationJump to search
No edit summary
Onnowpurbo (talk | contribs)
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 19: Line 19:
  </VirtualHost>
  </VirtualHost>


edit file /etc/apache2/ports.conf
 
hapus kalimat 'NameVirtualHost *:80'
 
<VirtualHost *:80>
        ServerName www.domain.tld
        ServerAlias domain.tld *.domain.tld
        DocumentRoot /www/domain
</VirtualHost>
 
<VirtualHost *:80>
        ServerName www.otherdomain.tld
        DocumentRoot /www/otherdomain
</VirtualHost>
 
 
edit file
 
# vi /etc/apache2/ports.conf
 
hapus / remark kalimat
 
'NameVirtualHost *:80'
 
menjadi
 
# 'NameVirtualHost *:80'


==Referensi==
==Referensi==


* http://httpd.apache.org/docs/ - dokumentasi apache
* http://httpd.apache.org/docs/ - dokumentasi apache
* http://melengo.wordpress.com/2011/09/12/config-virtual-host-apache-2-2-17-dns-server-on-ubuntu-11-04/
* http://melengo.wordpress.com/2010/12/10/pro-dns-and-bind-book/
* http://httpd.apache.org/docs/2.2/vhosts/name-based.html


==Pranala Menarik==
==Pranala Menarik==

Latest revision as of 00:35, 23 January 2015

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>


<VirtualHost *:80>
        ServerName www.domain.tld
        ServerAlias domain.tld *.domain.tld
        DocumentRoot /www/domain
</VirtualHost>
<VirtualHost *:80>
        ServerName www.otherdomain.tld
        DocumentRoot /www/otherdomain
</VirtualHost>


edit file

# vi /etc/apache2/ports.conf

hapus / remark kalimat

'NameVirtualHost *:80'

menjadi

# 'NameVirtualHost *:80'

Referensi

Pranala Menarik