Difference between revisions of "Instalasi Apache"
Jump to navigation
Jump to search
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 ...) |
Onnowpurbo (talk | contribs) |
||
Line 26: | Line 26: | ||
</Directory> | </Directory> | ||
</VirtualHost> | </VirtualHost> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | ==Pranala Menarik== | ||
+ | |||
+ | * [[Linux Howto]] |
Revision as of 13:36, 11 June 2008
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>