18-month journey building a Soul Machines competitor. Now focusing on viable markets outside the West.
Book a 15-minute live demo: [Speak with HAVVA]
18-month journey building a Soul Machines competitor. Now focusing on viable markets outside the West.
Book a 15-minute live demo: [Speak with HAVVA]
| sudo add-apt-repository ppa:ondrej/php | |
| sudo apt-get update | |
| sudo apt-get install php7.1 | |
| sudo apt-get install php7.1-cli php7.1-common php7.1-json php7.1-opcache php7.1-mysql php7.1-mbstring php7.1-mcrypt php7.1-zip php7.1-fpm php7.1-intl php7.1-simplexml | |
| sudo a2dismod php7.2 | |
| sudo a2enmod php7.1 | |
| sudo service apache2 restart | |
| sudo update-alternatives --set php /usr/bin/php7.1 | |
| sudo update-alternatives --set phar /usr/bin/phar7.1 | |
| sudo update-alternatives --set phar.phar /usr/bin/phar.phar7.1 |
| proxy_http_version 1.1; | |
| proxy_set_header Connection ""; | |
| https://gist.github.com/miguelmota/6912559 | |
| # The upstream module is the link between Node.js and Nginx. | |
| # Upstream is used for proxying requests to other servers. | |
| # All requests for / get distributed between any of the servers listed. | |
| upstream helloworld { | |
| # Set up multiple Node.js webservers for load balancing. | |
| # max_fails refers to number of failed attempts | |
| # before server is considered inactive. |