silent-auction/config/snappy.php

25 lines
471 B
PHP
Raw Permalink Normal View History

2018-06-11 13:43:21 -04:00
<?php
return array(
'pdf' => array(
'enabled' => true,
'binary' => '/usr/bin/wkhtmltopdf --print-media-type --dpi 72',
'timeout' => false,
'options' => array(
'print-media-type' => true
),
'env' => array(),
),
'image' => array(
'enabled' => true,
'binary' => '/usr/local/bin/wkhtmltoimage',
'timeout' => false,
'options' => array(),
'env' => array(),
),
);