Last active
September 18, 2016 12:17
-
-
Save gerard-kanters/8e1457ad4c1bbf0e5117 to your computer and use it in GitHub Desktop.
HHVM server ini
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;extension = /usr/lib64/php/modules/geoip.so | |
hhvm.pid_file = "/var/run/hhvm/hhvm.pid" | |
hhvm.server.port = 9000 | |
hhvm.server.fix_path_info = true | |
hhvm.server.type = fastcgi | |
hhvm.server.enable_magic_quotes_gpc = false | |
hhvm.server.enable_keep_alive = true | |
hhvm.server.enable_ssl = true | |
hhvm.log.access_log_default_format = "%h %l %u %t \"%r\" %>s %b" | |
hhvm.log.runtime_error_reporting_level = Warning | |
hhvm.log.file = /var/log/hhvm/access.log | |
hhvm.repo.central.path = /var/cache/hhvm/hhvm.hhbc.sq3 | |
hhvm.server.apc.enable_apc = true | |
hhvm.server.request_timeout_seconds = 120 | |
hhvm.mysql.slow_query_threshold = 10000 | |
hhvm.jit_asize = 536870912 | |
hhvm.jit_global_data_size = 536870912 | |
hhvm.jit_acold_size = 536870912 | |
hhvm.jit_afrozen_size = 201326592 | |
hhvm.eval.perf_pid_map = false | |
date.timezone = Europe/Amsterdam | |
default_socket_timeout = 120 | |
memory_limit = 512M |
Hey Gerard,
is the current config "hhvm.jit_asize" or "hhvm.jit_a_size" ?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is our config we used for HipHop Virtual Machine, or HHVM. A jit compiler for php developed by facebook. We had some issues with crashes, which were memory related. These settings gave us a stable environment.