2012-07-01から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…

nginxをSSL付きでインストールする。

インストール $ wget http://nginx.org/download/nginx-1.3.3.tar.gz $ tar xvfz nginx-1.3.3.tar.gz $ cd nginx-1.3.3 $ sudo yum install pcre pcre-devel openssl openssl-devel $ ./configure \ --prefix=/usr/local/nginx-1.3.3 \ --with-http_ssl_modu…