在aws的ec2服务器上搭建nginx+php的环境
2011年9月8日
没有评论
- 安装gcc编译器
yum -y install gcc yum -y install gcc-c++ yum -y install make automake
- 创建用户
useradd www
- 安装 nginx
安装依赖的库
yum -y install pcre-devel openssl openssl-devel
下载nginx
wget http://nginx.org/download/nginx-1.0.6.tar.gz tar -xvf nginx-1.0.6.tar.gz ./configure --user=www --group=www --with-http_stub_status_module --with-http_ssl_module --with-http_perl_module make && make install
注:若make出现如下错误: 阅读全文…