Testing On Kali Linux 1.09
Download Programnya disini
Bitnami Nginx Stack
Download bitnami-nginxstack-1.6.2-1-linux-installer.run
Langkah Installasi via terminal
# chmod 755 bitnami-nginxstack-1.6.2-1-linux-installer.run
# ./bitnami-nginxstack-1.6.2-1-linux-installer.run
Next, Next aja sampai Finish
Aktifkan Semua Servicenya
test Dari browser
http://localhost:8080/
secara default file .php tidak di load secara otomatis
misal anda mau buka webserver wordpress harus disi dengan alamat lengkap
contoh
http://localhost:8080/wordpress/index.php
untuk meload secara otomatis ikuti konfigurasi sebagai berikut :
1. stop semua service
2. edit konfigurasi bitnami (jangan lupa buat backup)
# vi /opt/nginxstack-1.6.2-1/nginx/conf/bitnami/bitnami.conf
tambah kan index.php di baris server dan https
---------------------------------------------------------------------------------------------------------------------------------
# HTTP server
server {
listen 8080;
server_name localhost;
location / {
root html;
index index.php index.html index.htm;
}
---------------------------------------------------------------------------------------------------------------------------
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
location / {
root html;
index index.php index.html index.htm;
}
--------------------------------------------------------------------------------------------------------------------------------
3. jalan kembali semua service bitnami nginx stack
# cd /opt/nginxstack-1.6.2-1
# ./manager-linux.run
No comments:
Post a Comment