Telegraph.co.uk - Is BlackBerry really outselling Google and Apple?
powered by |
Wednesday, June 9, 2010
Membuat Proxy Server Pada Linux Fedora 12
* httpd
* openssl
* modssl
Nah supaya lebih cepat, mari kita langsung menuju ke TKP. Langkah-langkah:
1.) Buka terminal fedora dan masuklah sebagai root
# su
lalu isikan password anda.
2.) Lakukan pengecekan terhadap paket yang akan dibutuhkan yaitu httpd, openssl, dan modssl
# rpm -qa | grep httpd
# rpm -qa | grep openssl
# rpm -qa | grep mod_ssl
Untuk fedora versi 12 yang belum diupdate repositorinya, biasanya hanya modssl saja yang belum terinstal. Maka install terlebih dahulu paket modssl-nya.(untuk jaga-jaga, pastikan anda terhubung ke internet).
# yum install mod_ssl
Pada proses penginstalan apabila muncul optional Y/N maka pilhlah y lalu tekan enter. Setelah proses complete, maka kita masuk pada langkah ke-3
3.) Edit konfigurasi httpd
# gedit /etc/httpd/conf/httpd.conf
Cari dan ubahlah tulisan:
* Servername www.example.com:80 menjadi Servername (IP anda):80
4.) Setelah proses pengeditan httpd selesai, klik save lalu keluar. Setelah itu masuk ke direktori sertifikat dan isikan keterangan seperti contoh gambar ( kata wicipta disini dapat diganti sesuai keinginan anda ):
# cd /etc/pki/tls/certs
# make wicipta.key
# openssl rsa -in wicipta.key -out wicipta.key
# make wicipta.csr
# openssl x509 -in wicipta.csr -out wicipta.crt -req -signkey wicipta.key -days 3650
5.) Mengubah pengaturan dengan perintah
# chmod 400 wicipta.*
6.) Edit ssl
# gedit /etc/httpd/conf.d/ssl.conf
* Hapuslah tanda pagar yang ada sebelum " Document root /var/www/html".
* Gantilah Servername www.example.com:443 menjadi (IP anda):443
* Gantilah SSLCertificate file /etc/pki/tls/certs/localhost.crt menjadi SSLCertificate file /etc/pki/tls/certs/wicipta.crt
* Gantilah SSLCertificate file /etc/pki/tls/private/localhost.key menjadi SSLCertificate file /etc/pki/tls/private/wicipta.key
7.) Copy azmialfian.key kedalam direktori private
# cp azmialfian.key /etc/pki/tls/private
8.) Restart httpd
# /etc/init.d/httpd restart
Jika proses restart tertulis OK maka proses instalasi proxy server telah berhasil, jika FAIL maka cobalah restart ulang, dan jika masih FAIL coba periksalah langkah-langkahnya dari awal.
Testing apache HTTP (httpd) pada browser.........
setelah muncul diatas berarti proxy server pada fedora 12 telah berhasil.
***SELAMAT MENCOBA***
Tidak ada komentar:
Posting Komentar