Changes

Jump to navigation Jump to search
179 bytes removed ,  03:11, 9 August 2018
Line 1: Line 1: −
==php==
+
== Hostnames ==
hostname:  aslo-web.sugarlabs.org
  −
ip address: 140.186.70.123
     −
==Set up==
+
* http://aslo-web.sugarlabs.org (host not found --[[User:Quozl|Quozl]] ([[User talk:Quozl|talk]]) 03:11, 9 August 2018 (EDT))
Below is the recipe that we used to set up the php server. Please see machine for up to date configuration details.
     −
===Install needed packages===
+
== Hardware ==
sudo apt-get install apache2 php5 php5-gd php5-cli php-pear php5-mysql
+
 
sudo apt-get install git subversion
+
* KVM VM
 +
 
 +
== Location ==
 +
 
 +
[[Machine/housetree|Housetree]]
 +
 
 +
== Admins ==
 +
 
 +
* [[User:alsroot|Aleksey Lim]]
 +
 
 +
== Backups ==
 +
 
 +
<!--* Daily system-full-backup to [[Machine/backup]]. Ask admins for encryption password.
 +
* Daily system-remote-backup to [[Machine/backup]]. Encrypted with keys of bernie and dfarning.-->
 +
 
 +
== Setup ==
    
===Install required php modules===
 
===Install required php modules===
Line 15: Line 27:     
===Create user to run scripts===
 
===Create user to run scripts===
sudo useradd -d /srv/activities activities
+
Make sure that all files in /srv/activities
 +
* has apache(web-data) user
 +
* ''activities'' group
 +
* group write access
 +
* umask is 002
   −
===Checkout ASLO sources===
+
===Switch to activities user===
switch to user: activities
     −
  git clone git://git.sugarlabs.org/slo-activities/mainline.git /srv/activities
+
  sudo -i -u activities
git checkout production -b production
     −
===Fetch external dependencies===
+
===Set up NFS mount points===
  cd /srv/activities/site/vendors/
+
 
 +
Create directories
 +
mkdir -p ~/files
 +
mkdir -p ~/staging
 +
 
 +
Add the following lines to the end of `/etc/fstab'
 +
 
 +
sunjammer.sugarlabs.org:/srv/nfs/activities/files /srv/activities/files nfs rsize=8192,wsize=8192,timeo=14,intr
 +
  sunjammer.sugarlabs.org:/srv/nfs/activities/staging /srv/activities/staging nfs rsize=8192,wsize=8192,timeo=14,intr
 +
 
 +
===Clone ASLO repository===
 +
 
 +
git clone git://git.sugarlabs.org/slo-activities/mainline.git -b production .
 +
 
 +
===Checkout dependencies===
 +
 
 +
cd ~/site/vendors/
 
  svn co http://svn.mozilla.org/libs/product-details
 
  svn co http://svn.mozilla.org/libs/product-details
 
  svn co http://svn.mozilla.org/libs/fizzypop.mozdev fizzypop
 
  svn co http://svn.mozilla.org/libs/fizzypop.mozdev fizzypop
Line 30: Line 60:  
  svn co http://svn.mozilla.org/libs/zxtm-api
 
  svn co http://svn.mozilla.org/libs/zxtm-api
   −
===First-time ASLO setup===
+
==ASLO configuration==
   −
Using ''/srv/activities/aslo/config.php'' as template, setup ASLO settings in file ''/srv/activities/site/app/config/config.php''. Template file was configured for ''dev'' environment, switch it to production by  setting ''SITE_STATE'' variable to ''production''.
+
Using ''~/aslo/config.php'' as template, setup ASLO settings in file ''~/site/app/config/config.php''. Template file was configured for ''dev'' environment, switch it to production by  setting ''SITE_STATE'' variable to ''production''.
   −
Setup other env defines in file ''/srv/activities/site/app/config/config-local.php''
+
Setup other env defines in file ''~/site/app/config/config-local.php''
 
  define('DEBUG', 0);
 
  define('DEBUG', 0);
 
  define('DEV', false);
 
  define('DEV', false);
 
  define('QUERY_CACHE', true);
 
  define('QUERY_CACHE', true);
   −
Minify css/js stuff
+
All local configuration should happen in files
  /srv/activities/aslo/minify.py
+
  ~/site/app/config/config.php
 
+
  ~/site/app/config/config-local.php
Merge ASLO gettext strings
  −
/srv/activities/aslo/po-compile.sh
  −
 
  −
===Crontab===
  −
 
  −
@daily  /srv/activities/aslo/cron/daily
  −
  @hourly /srv/activities/aslo/cron/hourly
  −
 
  −
===Create vhost===
  −
vim /etc/apache2/sites-available/activities.sl.org
  −
<pre>
  −
<VirtualHost *:80 *:443>
  −
        ServerName activities.sugarlabs.org
  −
        ServerAlias activities2.sugarlabs.org # for test/install
  −
        ServerAdmin webmaster@sugarlabs.org
  −
 
  −
        DocumentRoot /srv/activities/site/app/webroot
  −
 
  −
        LogFormat "%h %V %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\" \"%{HTTP_COOKIE}i\"" addons
  −
        CustomLog /srv/activities/data/access addons
  −
        CustomLog /var/log/apache2/all-access.log vhost_combined
  −
        #CustomLog /var/log/apache2/performance.log performance
  −
</VirtualHost>
  −
</pre>
     −
===Log rotate===
+
==Update ASLO repository==
   −
===Parse logs===
+
git pull origin production

Navigation menu