Skip to content

Instantly share code, notes, and snippets.

@justmoon
Last active November 10, 2016 23:07
Show Gist options
  • Save justmoon/35fc2a06bcd8dd277addabfa880fbd11 to your computer and use it in GitHub Desktop.
Save justmoon/35fc2a06bcd8dd277addabfa880fbd11 to your computer and use it in GitHub Desktop.
Installing ILP Kit on Ubuntu 16.04

This is a log of me installing five-bells-wallet.

General Configuration

sudo hostname nexus.justmoon.com
sudo apt update
sudo apt dist-upgrade
sudo apt install build-essential libssl-dev python libpq-dev git-core

Installing Node.js

mkdir ~/opt
cd ~/opt/
wget https://nodejs.org/dist/v6.9.0/node-v6.9.1.tar.gz
tar xzvf node-v6.9.1.tar.gz
rm node-v6.9.1.tar.gz
cd node-v6.9.1/
./configure
make -j 4
sudo make install

Installing ilp-kit

cd /opt
git clone https://github.com/interledgerjs/ilp-kit
cd ilp-kit/
# We assume that you have already setup a PostgreSQL database
npm i
npm rebuild node-sass
npm run build

Configuring ilp-kit

cd /opt/ilp-kit
npm run configure

Installing SSL origin certificate (from Cloudflare)

cd /opt
mkdir ssl
cd ssl
# Get certificates from Cloudflare
vim nexus.justmoon.com.crt
vim nexus.justmoon.com.key
chmod 600 nexus.justmoon.com.key

Installing nginx

sudo apt install nginx
cd /etc/nginx/snippets/
cp snakeoil.conf ssl.conf
# See ssl.conf below
vim ssl.conf
# See default.conf below
vim /etc/nginx/sites-enabled/default
sudo /etc/init.d/nginx restart
##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# http://wiki.nginx.org/Pitfalls
# http://wiki.nginx.org/QuickStart
# http://wiki.nginx.org/Configuration
#
# Generally, you will want to move this file somewhere, and start with a clean
# file but keep this around for reference. Or just disable in sites-enabled.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##
# Default server configuration
#
server {
listen 80 default_server;
listen [::]:80 default_server;
# SSL configuration
#
listen 443 ssl default_server;
listen [::]:443 ssl default_server;
# Note: You should disable gzip for SSL traffic.
# See: https://bugs.debian.org/773332
#
# Read up on ssl_ciphers to ensure a secure configuration.
# See: https://bugs.debian.org/765782
#
# Self signed certs generated by the ssl-cert package
# Don't use them in a production server!
#
# include snippets/snakeoil.conf;
include snippets/ssl.conf;
root /var/www/html;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
proxy_pass http://localhost:3010;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# include snippets/fastcgi-php.conf;
#
# # With php7.0-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php7.0-fpm:
# fastcgi_pass unix:/run/php/php7.0-fpm.sock;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# Virtual Host configuration for example.com
#
# You can move that to a different file under sites-available/ and symlink that
# to sites-enabled/ to enable it.
#
#server {
# listen 80;
# listen [::]:80;
#
# server_name example.com;
#
# root /var/www/example.com;
# index index.html;
#
# location / {
# try_files $uri $uri/ =404;
# }
#}
# Put this under /etc/systemd/system/ilp-kit.service
[Service]
ExecStart=/usr/local/bin/npm start
Restart=always
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=ilp-kit
User=ubuntu
Group=ubuntu
WorkingDirectory=/opt/ilp-kit
[Install]
WantedBy=multi-user.target
# Self signed certificates generated by the ssl-cert package
# Don't use them in a production server!
ssl_certificate /opt/ssl/nexus.justmoon.com.crt;
ssl_certificate_key /opt/ssl/nexus.justmoon.com.key;
Copy link

ghost commented Nov 10, 2016

This needs to be fixed to:

Installing Node.js

mkdir ~/opt
cd ~/opt/
wget https://nodejs.org/dist/v6.9.1/node-v6.9.1.tar.gz
tar xzvf node-v6.9.1.tar.gz
rm node-v6.9.1.tar.gz
cd node-v6.9.1/
./configure
make -j 4
sudo make install

Copy link

ghost commented Nov 10, 2016

This needs to be fixed to:

Installing ilp-kit

cd ~/opt
git clone https://github.com/interledgerjs/ilp-kit
cd ilp-kit/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment