Difference between revisions of "Konfigurasi Sederhana Virtual Host di Apache"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (New page: 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/a...) |
Onnowpurbo (talk | contribs) |
||
| Line 18: | Line 18: | ||
| + | ==Referensi== | ||
| − | + | * http://httpd.apache.org/docs/ - dokumentasi apache | |
| − | |||
==Pranala Menarik== | ==Pranala Menarik== | ||
| Line 26: | Line 26: | ||
* [[Instalasi Apache]] | * [[Instalasi Apache]] | ||
* [[Mengaktifkan https di Apache]] | * [[Mengaktifkan https di Apache]] | ||
| + | |||
| + | |||
| + | [[Category: Linux]] | ||
Revision as of 11:33, 8 September 2010
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>
Referensi
- http://httpd.apache.org/docs/ - dokumentasi apache