Apache / Whm / CPanel

12 views
Skip to first unread message

Edgar Gonzalez

unread,
Jun 12, 2011, 4:21:43 AM6/12/11
to WebROaR - Ruby Application Server
I have some applications running in a VPS with cpanel+apache
+passenger, how can i install webroar???

i have try but i am not getting any results, is there any
configuration to do with apache ???


Regards,

Nikunj Limbaseeya

unread,
Jun 13, 2011, 9:07:16 AM6/13/11
to web...@googlegroups.com
Edgar,

The edge version can be installed using the following commands:
--------------
git clone git://github.com/webroar/webroar.git
cd webroar
sudo rake install
--------------

If you face any problem while installing WebROaR, please refer
http://webroar.in/user-guide.html

WebROaR is a standalone application server, you can run it without
using Apache.

Also you can run WebROaR behind Apache. Configuration file
'httpd.conf' for the same looks like
--------------
<IfModule mod_proxy.c>
ProxyRequests On
<Proxy *>
Order deny,allow
Deny from all
# Allow requests from intranet
Allow from 192.168.0.0/255.255.0.0
# Allow requests from localhost/127.0.0.1
Allow from 127.0.0.0/255.255.255.0
</Proxy>
</IfModule>

<VirtualHost *:80>
ServerName 127.0.0.1

RewriteEngine On

RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
RewriteRule ^/(.*)$ balancer://www_cluster%{REQUEST_URI} [P,QSA,L]

<Proxy balancer://www_cluster>
# Default listening port for WebROaR is 3000
BalancerMember http://127.0.0.1:3000
</Proxy>

</VirtualHost>

--------------

If you are still facing any issue, please let us know.

Thanks,
Nikunj

Reply all
Reply to author
Forward
0 new messages