Centum Learning ERP Details
Appearance
Basic Details[edit]
- ERP application hosted on Godaddy VPS server
- Server IP 118.139.177.24
- JBOSS and PostgreSQL Based Applications
- Server Config - 4Gb RAM / 120 GB Storage
- On Centos 6.2
- 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>