Я использую phpbb на Centos 7 с 512 МБ оперативной памяти и 1 ядром.
И у меня случаются случайные зависания и высокая загрузка процессора, когда я получаю URL-адрес моей чистой установки phpbb.
Это мой файл 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
}
}
И это мои настройки php nginx.conf:
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, есть какие-нибудь подсказки?
В лог-файлах вроде все нормально :(
Спасибо!