LNMP环境编译搭建
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-03-28
访问的域名
index index.html index.php;
root .........; #web根目录
location /
{
if (-f $request_filename) {
break ;
}
if (!-f $request_filename) {
rewrite ^/(. )$ /index.php?url=$ 1 last;
break ;
}
}
location ~ .*\.(php|php5)?$
{
fastcgi_pass unix:/dev/shm/php-fpm.sock;
fastcgi_index index.php;
include fastcgi.conf;
}
location /images/ {
alias /var/www/images/;
}
access_log /var/log/nginx/.......log;
第五步:配置mysql
cd /tmp/mysql- 5.1 . 57 /support-files/
cp my-large.cnf /etc/my.cnf
install -m 755 mysql-server /etc/init.d/mysql
cd /usr/local/mysql/bin
第七步:启动mysql,php-fpm,nginx
使用mysql用户启动mysql服务,初始化root密码 su - mysql
/etc/init.d/mysql start
cd /usr/local/mysql/bin
./mysqladmin -u root password ''...''
root用户启动php-fpm,nginx /usr/local/php/sbin/php-fpm
/usr/local/nginx/sbin/nginx
|
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于LNMP环境编译搭建的所有评论