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;








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).










share|improve this question
























  • 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

















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).










share|improve this question
























  • 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













0












0








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).










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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

















  • 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










1 Answer
1






active

oldest

votes


















0














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.






share|improve this answer























  • /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














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
);



);













draft saved

draft discarded


















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









0














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.






share|improve this answer























  • /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
















0














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.






share|improve this answer























  • /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














0












0








0







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.






share|improve this answer













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.







share|improve this answer












share|improve this answer



share|improve this answer










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


















  • /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


















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company