Login to t2.nano running Ubuntu 14.04 LTS:
# login to the instance by SSH $ ssh -i {{ key pair name }}.pem ubuntu@{{ Elastic IP Address }}
Install necessary packages:
# upgrade system $ sudo apt-get update $ sudo apt-get upgrade # install apache2 and mod_wsgi $ sudo apt-get install apache2 libapache2-mod-wsgi # install python server-side library to run website $ sudo apt-get install python-webpy $ sudo apt-get install python-jinja2 $ sudo apt-get install python-lxml # install offline tools $ sudo apt-get install vim $ sudo apt-get install git $ sudo apt-get install gettext $ sudo apt-get install make $ sudo apt-get install opencc
-
# run as user *ubuntu* # create a workspace in your home directory $ mkdir ~/dev # enter workspace $ cd ~/dev # download Go 1.6.2 for Linux 64-bit $ wget https://storage.googleapis.com/golang/go1.6.2.linux-amd64.tar.gz # uncompress and untar $ tar xvzf go1.6.2.linux-amd64.tar.gz
If you do not follow the above steps, please modify
GOROOT
andGOPATH
in Makefile. git clone the pali repository and data repository:
# git clone pali repository $ cd ~/dev $ git clone https://github.com/siongui/pali.git # enter pali repository $ cd ~/dev/pali # git clone data repository $ make clone
Development environment setup:
$ cd ~/dev/pali $ make ec2setup
Build Dictionary Website:
$ cd ~/dev/pali $ make mindicjs $ make mindiccss # edit dictionary/mainweb.py # change serverEnv, tpkWebAppUrl, dicWebAppUrl
Build Tipiṭaka Website:
$ cd ~/dev/pali $ make mintpkjs $ make mintpkcss # edit tipitaka/mainweb.py # change serverEnv, tpkWebAppUrl, dicWebAppUrl
Edit apache2 config file (/etc/apache2/sites-available/000-default.conf):
WSGIPythonPath /home/ubuntu/dev/pali/tipitaka <VirtualHost *:80> ServerName tipitaka.sutta.org ServerAdmin [email protected] ErrorLog /home/ubuntu/logs/error_log CustomLog /home/ubuntu/logs/access_log combined Alias /js/tipitaka.js /home/ubuntu/dev/pali/tipitaka/app/all_compiled.js Alias /favicon.ico /home/ubuntu/dev/pali/tipitaka/app/favicon.ico Alias /robots.txt /home/ubuntu/dev/pali/common/robots.txt Alias /wordJson/ /home/ubuntu/dev/pali/dictionary/pylib/paliwords/ WSGIScriptAlias / /home/ubuntu/dev/pali/tipitaka/devNotGaeRun.py AddType text/html .py <Directory /> Require all granted </Directory> </VirtualHost> <VirtualHost *:80> ServerName dictionary.sutta.org ServerAdmin [email protected] ErrorLog /home/ubuntu/logs/dic_error_log CustomLog /home/ubuntu/logs/dic_access_log combined Alias /js/palidic.js /home/ubuntu/dev/pali/dictionary/app/all_compiled.js Alias /favicon.ico /home/ubuntu/dev/pali/dictionary/app/favicon.ico Alias /robots.txt /home/ubuntu/dev/pali/common/robots.txt Alias /wordJson/ /home/ubuntu/dev/pali/dictionary/pylib/paliwords/ WSGIScriptAlias / /home/ubuntu/dev/pali/dictionary/mainweb.py AddType text/html .py <Directory /> Require all granted </Directory> </VirtualHost>
Create logs directory:
$ mkdir ~/logs
Restart apache2:
$ sudo service apache2 restart # or $ sudo /etc/init.d/apache2 restart
[1] | [AWS] Create/Migrate Linux Users on Amazon EC2 |
[2] | Apache Web Server on Ubuntu 14.04 LTS |
[3] | Apache and mod_wsgi on Ubuntu 14.04 (Trusty Tahr) |