我在 Centos 7 上使用 phpbb,配备 512mb 内存和 1 个核心。
当我获取一些干净的 phpbb 安装的 url 时,我会随机挂起并且 CPU 使用率很高。
这是我的 server.hdf 文件:
idFile = /run/hhvm.pid
Server {
Port = 9000
Type = fastcgi
SourceRoot = /home/deploy/www/mypage
ExposeHPHP = 0
}
Log {
Level = Error
UseLogFile = true
File = /var/log/hhvm/hhvm-error.log
Access {
* {
File = /var/log/hhvm/hhvm-access.log
Format = %h %l %u %t \"%r\" %>s %b
}
}
}
Repo {
Central {
Path = /var/log/hhvm/.hhvm.hhbc
}
}
这是我的 nginx.conf php 设置:
index index.php index.html index.htm;
try_files $uri $uri/ /index.php;
location ~ .(hh|php)$ {
fastcgi_keep_conn on;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
我正在使用 HipHop VM 3.8.0-dev (rel) 和 Nginx 1.8.0 和 mariadb,有什么线索吗?
日志文件中一切似乎正常:(
谢谢!