Instalasi Apache

From OnnoWiki
Revision as of 13:35, 11 June 2008 by Onnowpurbo (talk | contribs) (New page: Instalasi Apache Web Server relatif sederhana melalui perintah # apt-get install apache2 Semua konfigurasi server berada di folder /etc/apache2 Biasanya akan menarik untuk membuat ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Instalasi Apache Web Server relatif sederhana melalui perintah

# apt-get install apache2


Semua konfigurasi server berada di folder

/etc/apache2


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-available/default

Tambahan entry untuk masing-masing mesin / host kira-kira sebagai berikut

<VirtualHost *>
        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>