- Hosted Lukes model on Chimay. It's available at https://richardsonlab.ucr.edu/real-time-frosti
- The sourcecode is at Github. It is clones at
/var/www/html/real-time-frosti , and this is the block added to nginx config file at /etc/nginx/sites-available/default :
location /real-time-frosti {
root /var/www/html;
index index.html index.htm index.php;
}
- Also added this line to the crontab, so the code will be checked for updated from the sourcecode every five minutes.
*/5 * * * * cd /var/www/html/real-time-frosti/ && git pull
- TODO: Move the sourcecode from Github to git.ligo.org, and make the repository public.
|