Install WKHTMLTOX (WKHTMLTOPDF + WKHTMLTOIMAGE) on AWS ElasticBeanstalk
Clash Royale CLAN TAG #URR8PPP Install WKHTMLTOX (WKHTMLTOPDF + WKHTMLTOIMAGE) on AWS ElasticBeanstalk I need WKHTMLTOX to be installed with my AWS EB app. I found this tutorial and it works except it supports old version. Did anyone install the latest (0.12.3) version on AWS EB as this is a bit different folders structure? 4 Answers 4 After trying different tutorials, including this I finally got this working - I updated porteaux's answer. I added below code to my EB *.config file in commands section: commands: # install WKHTML 03_command: command: yum install xz urw-fonts libXext openssl-devel libXrender 04_command: command: wget http://download.gna.org/wkhtmltopdf/0.12/0.12.3/wkhtmltox-0.12.3_linux-generic-amd64.tar.xz 05_command: command: tar -xJf wkhtmltox-0.12.3_linux-generic-amd64.tar.xz 06_command: command: cp wkhtmltox/bin/wkhtmltopdf /usr/local/bin/wkhtmltopdf...