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 - Тарых жана география Навигация менюсу

Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070