Instalasi Pada Opensuse 11.4 64 bit
Buka Console / Terminal
Ketik Perintah :
zypper in -t pattern lamp_server
Running Service , jalankan perintah dibawah ini :
chkconfig --add apache2
chkconfig apache2 on
service apache2 restart
Edit Konfigurasi file di /etc/apache2/default-server.conf
DocumentRoot "/srv/www/htdocs"
#
# Configure the DocumentRoot
#
<Directory "/srv/www/htdocs">
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs-2.2/mod/core.html#options
# for more information.
Options All
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
AllowOverride None
ubah Options None menjadi Options All
Restart ulang service Apache
service apache2 restart
Buka Browser , kemudian akses IP address Webserver
Misal : 192.168.1.36
Jika Muncul It's Work berarti Webserver anda sudah berjalan
Folder utama dari web server terletak pada folder /srv/www/htdocs
Comments
Post a Comment