-
-
Save nntoan/f62149095bb113b32bcb to your computer and use it in GitHub Desktop.
This file contains 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
# hhvm --mode daemon -vServer.Type=fastcgi -vServer.Port=9001 --config /etc/hhvm.hdf | |
PidFile = /var/run/hhvm.pid | |
ServerVariables { | |
ENVIRONMENT = DEVELOPMENT | |
} | |
Log { | |
UseLogFile = true | |
Level = Error | |
AlwaysLogUnhandledExceptions = true | |
File = /var/log/hhvm/error.log | |
Access { | |
* { | |
File = /var/log/hhvm/access.log | |
Format = %h %l %u %t \"%r\" %>s %b | |
} | |
} | |
} | |
Debug { | |
FullBacktrace = true | |
ServerStackTrace = true | |
ServerErrorMessage = true | |
TranslateSource = true | |
RecordInput = true | |
ClearInputOnSuccess = true | |
ProfilerOutputDir = /tmp | |
CoreDumpReport = true | |
} | |
ErrorHandling { | |
CallUserHandlerOnFatals = true | |
NoInfiniteLoopDetection = false | |
NoInfiniteRecursionDetection = false | |
ThrowBadTypeExceptions = true | |
NoticeFrequency = 1 # 1 out of these many notices to log | |
WarningFrequency = 1 # 1 out of these many warnings to log | |
AssertActive = true | |
AssertWarning = true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment