I hereby claim:
- I am risyasin on github.
- I am risyasin (https://keybase.io/risyasin) on keybase.
- I have a public key whose fingerprint is 6AB3 F79F 0692 CE84 B65A 0608 9132 923E 60B4 03CE
To claim this, I am signing this object:
{ | |
"phantom": true, | |
"devel": true, | |
"jquery": true, | |
"node": true, | |
"browser": true, | |
"globalstrict": true, | |
"nonstandard": true, | |
"bitwise": true, | |
"curly": true, |
I hereby claim:
To claim this, I am signing this object:
###The Issue With Forever Forever is great for running node services, with a minor setback: the word "forever" doesn't apply to system reboots.
###The solution, run node apps as a system service logged in as root
vim /etc/init/node-app.conf
Contents for node-app.conf
#!/bin/bash | |
PHPRC=/opt/local/php56/etc | |
export PHPRC | |
umask 022 | |
export PHP_FCGI_CHILDREN | |
PHP_FCGI_MAX_REQUESTS=99999 | |
export PHP_FCGI_MAX_REQUESTS | |
SCRIPT_FILENAME=$PATH_TRANSLATED | |
export SCRIPT_FILENAME | |
exec /opt/local/php56/bin/php-cgi |
Install imagick first!
sudo apt-get install imagick
Enable Apache2 mod_ext_filter
sudo a2enmod ext_filter
Check it:
Copy this myapp.service
file under /etc/systemd/system
Enable service (starts at boot time)
systemctl enable myapp.service
Start service immediately
systemctl start myapp.service
Display logs of service (stdout)
journalctl -u myapp.service
#!/usr/bin/env bash | |
NODEJS_VERSION=5.6.0 | |
# aria2 is a really nice tool. promise, you won't regret | |
apt-get install -y aria2 | |
echo "Installing Node.js v${NODEJS_VERSION} to /opt/nodejs" | |
cd /opt/ | |
## cleanup |
#!/usr/bin/env bash | |
set -e | |
SRC_ROOT=/usr/src | |
NSRC_ROOT=/usr/src/nginx | |
NPS_VERSION=1.13.35.1 | |
NGINX_VERSION=1.12.2 | |
NODEJS_VERSION=8.9.4 | |
## not installing now, uncomment webmin install below |
# mkdir /usr/src/php7 | |
# cd /usr/src/php7 | |
# aria2c https://gist.githubusercontent.com/risyasin/8b42849ff4b5786292d3/raw/eae0e67737bcb2f4eed6d72c24a6d560dd7161de/ubuntu-php7-install.sh | |
## php7 compile requirements | |
apt-get install -y git build-essential autoconf automake pkg-config libtool | |
apt-get install -y re2c | |
apt-get install -y bison | |
apt-get install -y openssl | |
apt-get install -y libssl-dev |