Using HHVM with PHP-FPM Fallback

Note: HHVM doesn’t play with all WordPress themes and plugins. Test your site properly before using this in production. Installation of HHVM: For installation of HHVM please follow this guide: https://github.com/facebook/hhvm/wiki/Prebuilt%20Packages%20for%20HHVM Post installation: We need to configure our web server to use HHVM, sudo /usr/share/hhvm/install_fastcgi.sh You can ignore the WARNING from following message. # sudo /usr/share/hhvm/install_fastcgi.sh Checking if… Continue reading Using HHVM with PHP-FPM Fallback

Setup OpenDKIM

apt-get install opendkim opendkim-tools Configure OpenDKIM: Let’s start with the main configuration file: ^_^[root@example.com:~]# vim /etc/opendkim.conf ExternalIgnoreList refile:/etc/opendkim/TrustedHosts InternalHosts refile:/etc/opendkim/TrustedHosts KeyTable refile:/etc/opendkim/KeyTable SigningTable refile:/etc/opendkim/SigningTable SOCKET inet:8891@localhost Next OpenDKIM defaults file: ^_^[root@example.com:~]# vim /etc/default/opendkim SOCKET=”inet:8891@localhost” Configure Postfix: ^_^[root@example.com:~]# vim /etc/postfix/main.cf # OpenDKIM milter_default_action = accept milter_protocol = 2 smtpd_milters = inet:localhost:8891 non_smtpd_milters = inet:localhost:8891 Specify trusted… Continue reading Setup OpenDKIM