Jump to content

Centum Learning ERP Details

From TetraWiki
Revision as of 04:47, 14 January 2013 by Biswajit (talk | contribs) (Created page with "category:Centum Learning == Basic Details == # ERP application hosted on Godaddy VPS server # Server IP 118.139.177.24 # JBOSS and PostgreSQL Based Applications # Ser...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


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>