Sebelum installasi freepbx di ubuntu
June 15th, 2010 by Idris
sudo apt-get install asterisk asterisk-mysql php5-mysql php-db mysql-server libapache2-mod-php5 php5-gd php-pear php-pear-DB sox curl
- No Comments »
- Posted in Info umum
June 15th, 2010 by Idris
sudo apt-get install asterisk asterisk-mysql php5-mysql php-db mysql-server libapache2-mod-php5 php5-gd php-pear php-pear-DB sox curl
June 7th, 2010 by Idris
June 7th, 2010 by Idris
MAil server udah di pindahin ke mesin baru, pake debian Lenny… nah semua dah set dan running well…. tapi waktu ada virus… ternyata si amavis ndak lapor-an ke email… nah lu… ada apa nih… usut punya usut ternyata amavis di lenny ada bug… akhirnya dengan penuh perjuangan nambahin syntax…
$mailfrom_notify_admin = “postmaster\@$mydomain”; # notifications sender
$mailfrom_notify_recip = “postmaster\@$mydomain”; # notifications sender
$mailfrom_notify_spamadmin = “postmaster\@$mydomain”; # notifications sender
$mailfrom_to_quarantine = ”; # null return path; uses original sender if undef
restart…. dan sipp…. mantappp…. report virus mail dapat di terima dengan baik…. ![]()
February 19th, 2010 by Idris
Waktu lagi nungguin ujian kompetensi di Situbondo… lagi-lagi surfing on the internet cari artikel tentang journaling ext3 yah kemudian nemu beberapa setting yang bisa untuk speedup the access time of ext3 yah intinya sih gampang cuman edit fstab dan restart mount dev-nya beres dah…. (noatime) heheheheh…..
December 29th, 2009 by Idris
Mengingat ingat kembali cara memasang modul IMAP untuk apache2 di Debian, tahun tahun lalu sih udah nyoba untuk pasang mod_auth_imap di apache2 tapi dasar saya yang males dokumentasi jadi harus cari lagi tutorial untuk pasang mod_auth_imap di apache2 lagi, tapi akhirnya ketemu juga:
so gini ceritanya:
1. Install dulu apache2 sekalian development header nya: # apt-get install apache2 apache2-threaded-dev
2. Trus download source dari modul mod_auth_apache: # wget http://ben.brillat.net/files/projects/mod_auth_imap2/mod_auth_imap2-current.tar.gz
atau
# wget http://lecturer.eepis-its.edu/~idris/files/aplikasi_web/mod_auth_imap2-current.tar.gz
3. Ekstrak file hasil download: # tar -xzvf mod_auth_imap2-current.tar.gz
4. Masuk kedalam folder hasil ekstrak: # cd mod_auth_imap2-2.2.0
5. Kompilasi file source: # apxs2 -i -a -c mod_auth_imap.c
6. Bikin file baru: # echo “LoadModule auth_imap_module /usr/lib/apache2/modules/mod_auth_imap.so” > /etc/apache2/mods-available/mod_auth_imap.load
7. Bikin symbolic link -nya: # ln -s /etc/apache2/mods-available/mod_auth_imap.load /etc/apache2/mods-enabled/
8. Restart apache2: # /etc/init.d/apache2 restart
Nah sekarang membuat contoh subdirektory yang mau di secure kan
9. Edit default dan tambahkan script: # vim /etc/apache2/sites-available/default
Alias /coba /home/coba/webku
<Directory /home/coba/webku>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Auth_IMAP_Enabled On
AuthBasicAuthoritative Off
AuthName “Masukkan passwordnya”
AuthType Basic
Require valid-user
Auth_IMAP_Authoritative On
Auth_IMAP_Server 127.0.0.1
Auth_IMAP_Port 143
Auth_IMAP_Log On
</Directory>
10. Restart apache2 nya dan coba di web : # /etc/init.d/apache2 restart