Host multiple Rack apps on one server with multiple ports (using Apache and Passenger)Apache dispatch.fcgi doesn't get interpreted with PassengerHost Ruby on Rails Tracks on Apache2Live site with ssl enabled redirects to the staging site without sslRuby Passeger + Nginx or lighthttpi + fgci for shared hostingSetting passenger with Apache virtual hosts?Multiple Rails apps on same subdomain?500 error with deploying rails application via apache2+passengershift a localhost site from webrick localhost:3000 to apache2 passenger localhost/redmine or redmine.localhostApache 2.4 & Phusion Passenger generating 403 ErrorRunning Ruby on Rails and PHP apps side-by-side under the same (Apache) web directory structure
How to determine what is the correct level of detail when modelling?
If a high rpm motor is run at lower rpm, will it produce more torque?
Set vertical spacing between two particular items
Bash echo $-1 prints hb1. Why?
Do 3D printers really reach 50 micron (0.050mm) accuracy?
Was "I have the farts, again" broadcast from the Moon to the whole world?
Anagram Within an Anagram!
Is there a short way to check uniqueness of values without using 'if' and multiple 'and's?
How should I behave to assure my friends that I am not after their money?
Children's short story about material that accelerates away from gravity
Derivative of an algebraic power series in positive characteristic
Procedurally generate regions on island
Avoid bfseries from bolding pm in siunitx
Why does the A-4 Skyhawk sit nose-up when on ground?
Three column layout
What do you call the action of someone tackling a stronger person?
Pronunciation of "œuf" in "deux œufs kinder" and "bœuf "in "deux bœufs bourguignons" as an exception to silent /f/ in the plural
Forgot chonantanu after already making havdalah over wine
What's the point of DHS warning passengers about Manila airport?
A player is constantly pestering me about rules, what do I do as a DM?
How can I create ribbons like these in Microsoft word 2010?
Why is the Turkish president's surname spelt in Russian as Эрдоган, with г?
Dual statement category theory
How to convert object fill in to fine lines?
Host multiple Rack apps on one server with multiple ports (using Apache and Passenger)
Apache dispatch.fcgi doesn't get interpreted with PassengerHost Ruby on Rails Tracks on Apache2Live site with ssl enabled redirects to the staging site without sslRuby Passeger + Nginx or lighthttpi + fgci for shared hostingSetting passenger with Apache virtual hosts?Multiple Rails apps on same subdomain?500 error with deploying rails application via apache2+passengershift a localhost site from webrick localhost:3000 to apache2 passenger localhost/redmine or redmine.localhostApache 2.4 & Phusion Passenger generating 403 ErrorRunning Ruby on Rails and PHP apps side-by-side under the same (Apache) web directory structure
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I've search online and been reading documentation for Apache, Passenger, Rack, etc, but have yet to find a solution to my problem.
I have several Rack (ruby)-based apps, located in
/home/web/sites/app1
/home/web/sites/app2
/home/web/sites/app3
app1 is a Sintra app, app2 is Padrino and app3 is Rails.
I would like to run these apps under different ports (assuming server IP is 50.60.70.101):
50.60.70.101:4567 -> app1
50.60.70.101:3000 -> app2
50.60.70.101:80 -> app3
What is the correct way to configure Apache's virtual host file to achieve this?
I have 3 files in /etc/apache2/sites-available/ with this type of configuration (with changed IPs):
<VirtualHost *:4567>
RackEnv production
DocumentRoot /home/web/sites/app1/public
<Directory /home/web/sites/app1/public>
Order allow,deny
Allow from all
Options -MultiViews
#AllowOverride All
</Directory>
</VirtualHost>
But I cannot access app1 at 50.60.70.101:4567 (app3 does work on port 80, though).
apache-2.2 ruby-on-rails phusion-passenger ruby ruby-rack
add a comment |
I've search online and been reading documentation for Apache, Passenger, Rack, etc, but have yet to find a solution to my problem.
I have several Rack (ruby)-based apps, located in
/home/web/sites/app1
/home/web/sites/app2
/home/web/sites/app3
app1 is a Sintra app, app2 is Padrino and app3 is Rails.
I would like to run these apps under different ports (assuming server IP is 50.60.70.101):
50.60.70.101:4567 -> app1
50.60.70.101:3000 -> app2
50.60.70.101:80 -> app3
What is the correct way to configure Apache's virtual host file to achieve this?
I have 3 files in /etc/apache2/sites-available/ with this type of configuration (with changed IPs):
<VirtualHost *:4567>
RackEnv production
DocumentRoot /home/web/sites/app1/public
<Directory /home/web/sites/app1/public>
Order allow,deny
Allow from all
Options -MultiViews
#AllowOverride All
</Directory>
</VirtualHost>
But I cannot access app1 at 50.60.70.101:4567 (app3 does work on port 80, though).
apache-2.2 ruby-on-rails phusion-passenger ruby ruby-rack
I'm assuming you mean port when you say IP as you haven't mentioned an IP other than 50.60.70.101. What error do you receive when accessing Apache on either of the higher ports? 50.60.70.101:4567 and 50.60.70.101:3000
– Matt
Aug 17 '12 at 8:28
That's correct, I stated that I want to run these apps under different ports with the same IP address. Accessing the ports in the browser, or pinging them times outs.
– Arman H
Aug 18 '12 at 7:51
add a comment |
I've search online and been reading documentation for Apache, Passenger, Rack, etc, but have yet to find a solution to my problem.
I have several Rack (ruby)-based apps, located in
/home/web/sites/app1
/home/web/sites/app2
/home/web/sites/app3
app1 is a Sintra app, app2 is Padrino and app3 is Rails.
I would like to run these apps under different ports (assuming server IP is 50.60.70.101):
50.60.70.101:4567 -> app1
50.60.70.101:3000 -> app2
50.60.70.101:80 -> app3
What is the correct way to configure Apache's virtual host file to achieve this?
I have 3 files in /etc/apache2/sites-available/ with this type of configuration (with changed IPs):
<VirtualHost *:4567>
RackEnv production
DocumentRoot /home/web/sites/app1/public
<Directory /home/web/sites/app1/public>
Order allow,deny
Allow from all
Options -MultiViews
#AllowOverride All
</Directory>
</VirtualHost>
But I cannot access app1 at 50.60.70.101:4567 (app3 does work on port 80, though).
apache-2.2 ruby-on-rails phusion-passenger ruby ruby-rack
I've search online and been reading documentation for Apache, Passenger, Rack, etc, but have yet to find a solution to my problem.
I have several Rack (ruby)-based apps, located in
/home/web/sites/app1
/home/web/sites/app2
/home/web/sites/app3
app1 is a Sintra app, app2 is Padrino and app3 is Rails.
I would like to run these apps under different ports (assuming server IP is 50.60.70.101):
50.60.70.101:4567 -> app1
50.60.70.101:3000 -> app2
50.60.70.101:80 -> app3
What is the correct way to configure Apache's virtual host file to achieve this?
I have 3 files in /etc/apache2/sites-available/ with this type of configuration (with changed IPs):
<VirtualHost *:4567>
RackEnv production
DocumentRoot /home/web/sites/app1/public
<Directory /home/web/sites/app1/public>
Order allow,deny
Allow from all
Options -MultiViews
#AllowOverride All
</Directory>
</VirtualHost>
But I cannot access app1 at 50.60.70.101:4567 (app3 does work on port 80, though).
apache-2.2 ruby-on-rails phusion-passenger ruby ruby-rack
apache-2.2 ruby-on-rails phusion-passenger ruby ruby-rack
edited Aug 27 '12 at 22:50
Michael Hampton♦
180k28 gold badges337 silver badges667 bronze badges
180k28 gold badges337 silver badges667 bronze badges
asked Aug 17 '12 at 8:05
Arman HArman H
1015 bronze badges
1015 bronze badges
I'm assuming you mean port when you say IP as you haven't mentioned an IP other than 50.60.70.101. What error do you receive when accessing Apache on either of the higher ports? 50.60.70.101:4567 and 50.60.70.101:3000
– Matt
Aug 17 '12 at 8:28
That's correct, I stated that I want to run these apps under different ports with the same IP address. Accessing the ports in the browser, or pinging them times outs.
– Arman H
Aug 18 '12 at 7:51
add a comment |
I'm assuming you mean port when you say IP as you haven't mentioned an IP other than 50.60.70.101. What error do you receive when accessing Apache on either of the higher ports? 50.60.70.101:4567 and 50.60.70.101:3000
– Matt
Aug 17 '12 at 8:28
That's correct, I stated that I want to run these apps under different ports with the same IP address. Accessing the ports in the browser, or pinging them times outs.
– Arman H
Aug 18 '12 at 7:51
I'm assuming you mean port when you say IP as you haven't mentioned an IP other than 50.60.70.101. What error do you receive when accessing Apache on either of the higher ports? 50.60.70.101:4567 and 50.60.70.101:3000
– Matt
Aug 17 '12 at 8:28
I'm assuming you mean port when you say IP as you haven't mentioned an IP other than 50.60.70.101. What error do you receive when accessing Apache on either of the higher ports? 50.60.70.101:4567 and 50.60.70.101:3000
– Matt
Aug 17 '12 at 8:28
That's correct, I stated that I want to run these apps under different ports with the same IP address. Accessing the ports in the browser, or pinging them times outs.
– Arman H
Aug 18 '12 at 7:51
That's correct, I stated that I want to run these apps under different ports with the same IP address. Accessing the ports in the browser, or pinging them times outs.
– Arman H
Aug 18 '12 at 7:51
add a comment |
1 Answer
1
active
oldest
votes
You'll need to explicitly tell Apache to listen on those ports with the Listen
directive; have a look at Binding to Addresses and Ports.
/etc/apache2/ports.conf contains the following directives:NameVirtualHost *:80
NameVirtualHost *:3000
NameVirtualHost *:4567
Listen 80
Listen 3000
Listen 4567
Relevant output for netstat -tulpn:tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:3000 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:4567 0.0.0.0:* LISTEN -
– Arman H
Aug 18 '12 at 7:52
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f418515%2fhost-multiple-rack-apps-on-one-server-with-multiple-ports-using-apache-and-pass%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You'll need to explicitly tell Apache to listen on those ports with the Listen
directive; have a look at Binding to Addresses and Ports.
/etc/apache2/ports.conf contains the following directives:NameVirtualHost *:80
NameVirtualHost *:3000
NameVirtualHost *:4567
Listen 80
Listen 3000
Listen 4567
Relevant output for netstat -tulpn:tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:3000 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:4567 0.0.0.0:* LISTEN -
– Arman H
Aug 18 '12 at 7:52
add a comment |
You'll need to explicitly tell Apache to listen on those ports with the Listen
directive; have a look at Binding to Addresses and Ports.
/etc/apache2/ports.conf contains the following directives:NameVirtualHost *:80
NameVirtualHost *:3000
NameVirtualHost *:4567
Listen 80
Listen 3000
Listen 4567
Relevant output for netstat -tulpn:tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:3000 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:4567 0.0.0.0:* LISTEN -
– Arman H
Aug 18 '12 at 7:52
add a comment |
You'll need to explicitly tell Apache to listen on those ports with the Listen
directive; have a look at Binding to Addresses and Ports.
You'll need to explicitly tell Apache to listen on those ports with the Listen
directive; have a look at Binding to Addresses and Ports.
answered Aug 17 '12 at 9:32
nickgrimnickgrim
3,54014 silver badges26 bronze badges
3,54014 silver badges26 bronze badges
/etc/apache2/ports.conf contains the following directives:NameVirtualHost *:80
NameVirtualHost *:3000
NameVirtualHost *:4567
Listen 80
Listen 3000
Listen 4567
Relevant output for netstat -tulpn:tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:3000 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:4567 0.0.0.0:* LISTEN -
– Arman H
Aug 18 '12 at 7:52
add a comment |
/etc/apache2/ports.conf contains the following directives:NameVirtualHost *:80
NameVirtualHost *:3000
NameVirtualHost *:4567
Listen 80
Listen 3000
Listen 4567
Relevant output for netstat -tulpn:tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:3000 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:4567 0.0.0.0:* LISTEN -
– Arman H
Aug 18 '12 at 7:52
/etc/apache2/ports.conf contains the following directives:
NameVirtualHost *:80
NameVirtualHost *:3000
NameVirtualHost *:4567
Listen 80
Listen 3000
Listen 4567
Relevant output for netstat -tulpn: tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:3000 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:4567 0.0.0.0:* LISTEN -
– Arman H
Aug 18 '12 at 7:52
/etc/apache2/ports.conf contains the following directives:
NameVirtualHost *:80
NameVirtualHost *:3000
NameVirtualHost *:4567
Listen 80
Listen 3000
Listen 4567
Relevant output for netstat -tulpn: tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:3000 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:4567 0.0.0.0:* LISTEN -
– Arman H
Aug 18 '12 at 7:52
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f418515%2fhost-multiple-rack-apps-on-one-server-with-multiple-ports-using-apache-and-pass%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I'm assuming you mean port when you say IP as you haven't mentioned an IP other than 50.60.70.101. What error do you receive when accessing Apache on either of the higher ports? 50.60.70.101:4567 and 50.60.70.101:3000
– Matt
Aug 17 '12 at 8:28
That's correct, I stated that I want to run these apps under different ports with the same IP address. Accessing the ports in the browser, or pinging them times outs.
– Arman H
Aug 18 '12 at 7:51