Konfigurasi Web di Fedora 7
Disini saya hanya menampilkan PHPnya saja.
Berikut langkah-langkah setting Web server :
1. Install paket httpd terlebih dahulu
# yum -y install httpd
Sebelumnya setting yum terlebih dahulu silahkan klik disini.
2. Masuk konfigurasi httpd
# vi /etc/httpd/conf/httpd.conf
ServerAdmin zainul@zainul.com
ServerName 192.168.21.1:80 (IP DNS anda:80)DirectoryIndex index.php index.html index.html.var (Tambahkan index.php)
NameVirtualHost 192.168.21.1:80 (IP DNS anda:80)
ServerAdmin zainul@zainul.com
ServerName 192.168.21.1:80 (IP DNS anda:80)DirectoryIndex index.php index.html index.html.var (Tambahkan index.php)
NameVirtualHost 192.168.21.1:80 (IP DNS anda:80)
# ServerAdmin webmaster@dummy-host.example.com
DocumentRoot /var/www/html (Tempat penyimpanan web anda)
ServerName www.zainul.com (Domain anda)# ErrorLog logs/dummy-host.example.com-error_log
# CustomLog logs/dummy-host.example.com-access_log common
Kemudian simpan dengan tekan tombol ESC ketik :wq Enter.
3. Buat file index.php ditempat penyimpanan yang di setting di httpd.
4. Restart httpd
# service httpd restart
Stopping httpd: [ OK ]
Starting httpd: [ OK ]
# vim /var/www/html/index.php
Tekan Insert dan tambahkan script :
Kemudian simpan dengan tekan Esc ketik :wq Enter.
4. Restart httpd
Stopping httpd: [ OK ]
Starting httpd: [ OK ]
5. Cek di Web browser www.zainul.com (domain anda).
No comments:
Post a Comment