Reputation: 33
I run a webpage using the Ruby web-framework Sinatra on my Ubuntu server. Today I looked to my processes and found these two lines:
30129 ? S 0:00 Passenger ApplicationSpawner: /var/www/bla.com
30139 ? S 0:00 Rack: /var/www/bla.com
I never noticed these before. Are these normal, or should I be concerned?
Upvotes: 0
Views: 668
Reputation: 13418
Yes, it's normal. Passenger is your webserver, and Rack is the middleware between your server and Sinatra framework.
Upvotes: 0
Reputation: 74655
From what I could find, Rack is used by Sinatra:
Sinatra rides on Rack, a minimal standard interface for Ruby web frameworks.
from http://www.sinatrarb.com/intro
Upvotes: 1