#### phantomjs properties #### # the host and port phantomjs listens to host = 127.0.0.1 port = 7777 # location of the phantomjs executable, could be for example /usr/local/bin/phantomjs exec = phantomjs # name of the convert script used by phantomjs script = highcharts-convert.js #### connect properties used to connect with phantomjs running as HTTP-server #### # all values in milliseconds # specifies the timeout when reading from phantomjs when a connection is established readTimeout = 6000 # timeout to be used when opening a communications link to the phantomjs server connectTimeout = 500 # the whole request to the phantomjs server is scheduled, max timeout can last to this value. This is because in java you can't rely on the above two timeouts. maxTimeout = 6500 #### Pool properties #### # number of phantomjs servers you can run in the pool. poolSize = 5 # The pool is implemented as a BlockingQueue. When asking for a phantom server connection and nothing is available, it waits for the number of milliseconds defined by maxWait maxWait = 500 # Keep files in the temp folder for a certain retentionTime, defined in miliseconds retentionTime = 30000