2012-07-25から1日間の記事一覧

nginx を yum でインストールする

yum に nginx 用の Repository を追加する $ sudo vi /etc/yum.repos.d/nginx.repo [nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/6/$basearch/ gpgcheck=0 enabled=1インストール $ sudo yum install -y nginx起動 $ sudo nginx $ ps …

nginx + php-fpm で PHP を動かす

nginx のインストールはコチラ次に、php-fpmをインストールする まずは remi Repository を追加する $ sudo rpm --import http://rpms.famillecollet.com/RPM-GPG-KEY-remi $ wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm $ wget http…