The Trinidad docs tell how to get a Jruby on Rails app up and running in detail, but can someone tell me / point me to a good tutorial on how to configure Apache to use the Trinidad server?
Configuring Apache with Trinidad and a Jruby on Rails app
525 Views Asked by Mohamed Hafez At
1
There are 1 best solutions below
Related Questions in JRUBY
- syntax error, unexpected kEND
- Jruby: How to use third party java library?
- How to override rake database tasks in rails 4
- java.lang.ArithmeticException: Negative exponent in jruby
- Swing application closes right away after launch
- JRuby/Gem logging "Ignoring thrift-0.9.0 because its extensions are not built"
- How do you install the JRuby SDK in IntelliJ 14.1.3 and up?
- Generate MD5 Hash of String in JRuby
- JRuby: changed CLASSPATH but no effect
- Image error observed while trying to use Sikuli with JRuby and Cucumber
- Jruby not working ClassNotFoundException
- How do I use JRuby and Java?
- AOT compiling with jRuby to obfuscate Rails code
- Shoes cannot find its own backend
- How to release large Ruby Gem?
Related Questions in JRUBYONRAILS
- How to override rake database tasks in rails 4
- jRuby ActiveRecord JDBC Adapter: connection_alive_sql with non JDBC-4.0-compliant Oracle driver?
- Running JRuby/Rails app "off-premises" using Heroku Postgres
- JRuby 9k is not working with Puma and torquebox 4
- bundle install hangs in Jruby with rails 4.2
- JRuby Google App Engine throws sun.misc.Unsafe is a restricted class for new Rails App
- java.security.AccessControlException when running fresh Rails App with Google App Engine Dev Server
- Change name of updated_at column in ActiveRecord / Rails
- How to connect RAILS with Red5 Server
- Rails Invoking a rake task dependant on :environment task, from a initializer file
- JRuby on Rails using jdbc postgres (8.4) ignores Default values
- Running Rake Tasks under Tomcat and JRuby
- Question testing rails post
- Rails 3 route problem
- Use Ruby ActiveRecord models in Java
Related Questions in TRINIDAD-GEM
- Reload jars from lib directory when using Trinidad (JRuby and RoR 3)
- JRuby Rails3 Trinidad/Jetty_Rails fails on simplest install - feeling as dim as a 2watt bulb
- Nginx configuration for trinidad-gem
- Leaking reference to jruby runtime, getting PermGen OOM errors after reloading app
- Creating a production Rails Server on Amazon AWS
- What is the preferred way to run Sinatra application?
- Getting a value out of a hash
- Session values aren't kept
- Setting Public folder with Trinidad Gem
- Adding MIME definitions to Trinidad
- JRuby: Nokogiri 1.6 Failing To Install & Bundler Attempting To Install Already Met Dependency
- Which message queue tools are recommended for using in a JRuby on Rails app using Trinidad?
- Trinidad 1.2.3 can't running in windows server 2008 R2
- How to implement access log in rails?
- Configuring Apache with Trinidad and a Jruby on Rails app
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The Trinidad wiki describes how to configure AJP to connect Apache to Trinidad:
Once Trinidad is configured to use AJP, you need to configure Apache to connect to AJP. First enable the ajp module:
Then, configure Apache to connect to ajp on the port you defined on Trinidad in the
httpd.conffile:Check out the Trinidad page for more details on load balancing.
Finally, you should get Deploying with JRuby if you want to go deeper into how to configure and deploy your JRuby apps on Trinidad using Capistrano/Puppet. It's a very good book.