为什么我的LNMP 1.2安装速度特别慢
为什么我的LNMP 1.2安装速度特别慢?升级个nginx要几个小时?不是说平滑升级升级过程不影响nginx的运行
http://104.149.18.195/p.php
502 Bad Gateway
[ 本帖最后由 koyaphet 于 2015-6-26 11:09 编辑 ] 安装速度和机器性能有关
nginx升级一般vps也就最多10几分钟就能完成
如果升级前没502,可能php-fpm挂了,建议按置顶帖排查 好像真的挂了而且Apache依然在运行 lnmp下想把test.com和www.test.com跳转到ooo.test.com怎么做? 不清楚你到底是lnmp 还是lnmpa,lnmp的话不会有apache
调整参考301教程:http://lnmp.org/faq/lnmp-nginx-301-rewrite.html 这是我的,看你能不能用
server
{
listen 80;
#listen [::]:80;
server_name www.aaaa.cnwww.bbb.comwww.ccc.com;
if ($host != 'www.ccc.com' ) {
rewrite ^/(.*)$ http://www.ccc.com/$1 permanent;
} index index.html index.htm index.php default.html default.htm default.php;
root/home/wwwroot/www.ccc.com;
include none.conf;
error_page 404 /404.html;
location ~ [^/]\.php(/|$)
{
# comment try_files $uri =404; to enable pathinfo
try_files $uri =404;
fastcgi_passunix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fastcgi.conf;
#include pathinfo.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
access_log off;
} 编译mariadb非常慢
我看了下top,只有一个cpu工作
不能多个cpu同时编译吗?
回复 6# 的帖子
你虚拟主机里压根就没非www的域名,肯定不会有效果按教程http://lnmp.org/faq/lnmp-nginx-301-rewrite.html 改改,加上
页:
[1]