Jump to content

Centum Learning ERP Details

From TetraWiki


Basic Details[edit]

  1. ERP application hosted on Godaddy VPS server
  2. Server IP 118.139.177.24
  3. JBOSS and PostgreSQL Based Applications
  4. Server Config - 4Gb RAM / 120 GB Storage
  5. On Centos 6.2
  6. Application runs on http://www.centumafrica.com/


Redirection of Application via HTTP redirect[edit]

The JBOSS works on port 8080 by default , So to have web portal opened on normal http port and on named URL (http://www.centumafrica.com/) , following was implemented on /etc/httpd/conf/http.conf

<VirtualHost *:80>
ServerName www.centumafrica.com
ServerAlias centumafrica.com
RewriteEngine on
RewriteRule ^/icons/(.+) - [PT,L]
RewriteRule ^/(.*) http://www.centumafrica.com:8080/$1 [P,L]
</VirtualHost>