# wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm # wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm (32 bit) # wget http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm # rpm -Uvh remi-release-6*.rpm epel-release-6*.rpmCài đặt Nginx
# yum install nginx -yCấu hình Nginx
# vi /etc/nginx/nginx.conf
Dòng 6: Thiết lập số lượng CPU
worker_processes 1;
Dòng 36: bỏ ghi chú ( enable gzip )
gzip on;
Loại bỏ cách dòng bằng lệnh
# cp /etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf.org # egrep -v "^ *#|^ *$" /etc/nginx/conf.d/default.conf.org > /etc/nginx/conf.d/default.conf
# vi /etc/nginx/conf.d/default.conf
Dòng 3: change to your server’s name
server_name www.adminvietnam.org;
Bật dịch vụ Nginx
# service nginx start # chkconfig nginx on