If you have Apache server installed, it can be used to run Web-Trishul without using the Web-Trishul inherent webserver.
LoadModule passenger_module /usr/lib/ruby/gems/1.8/gems/passenger-2.0.3/ext/apache2/mod_passenger.so PassengerRoot /usr/lib/ruby/gems/1.8/gems/passenger-2.0.3 PassengerRuby /usr/bin/ruby1.8 PassengerLogLevel 3 RailsEnv development
Listen 3000
NameVirtualHost *:3000
<VirtualHost *:3000>
DocumentRoot %path_to_webtrisul_directory%/public
<Directory "%path_to_webtrisul_directory%/public">
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>