
galihrezah.blogspot.com -
sebaiknya ada menginstall nginx nya dulu...
http://www.galih.us/2013/09/cara-install-nginx-di-centos.html
install repo dan remi dulu
untuk centos 6
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm
untuk centos 6
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

lalu ketikan
sudo yum --enablerepo=remi install -y php-fpm php-mysql
lalu edit
/etc/php.ini
rubah dari
cgi.fix_pathinfo=1
menjadi
cgi.fix_pathinfo=0
rubah pada
/etc/nginx/conf.d/default.conf
contoh
#
# The default server
#
server {
listen 80;
server_name galih.us;
location / {
root /usr/share/nginx/html;
index index.php index.html index.htm;
}
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root /usr/share/nginx/html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
rubah juga pada
/etc/php-fpm.d/www.conf
user = nginx
group = nginx
lalu restart
service php-fpm restart
automatis setupnya... maaf ga q share,,
buat yg udah jadi client
cek di
https://www.facebook.com/groups/serverutama/doc/667309966613147/
semoga bermanfaat





Posting Komentar