virtual host opening another virtual host - zend-framework2

host name:dhs
<VirtualHost *:80>
DocumentRoot "/var/www/dhs/public/"
ServerName dhs
# This should be omitted in the production environment
SetEnv APPLICATION_ENV development
<Directory "/var/www/dhs/public/">
Options Indexes MultiViews FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
host name: deforay
<VirtualHost *:80>
DocumentRoot "/var/www/deforay/public/"
ServerName deforay
# This should be omitted in the production environment
SetEnv APPLICATION_ENV development
<Directory "/var/www/deforay/public/">
Options Indexes MultiViews FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
but dhs(e.g: dhs/) opening the deforay host , am using in zend framework 2, the "deforay" host is working good but not dhs... i also added dhs in hosts's file

your config seems valid, the only way that may could be wrong is that you don't activated named based virtual hosts.
to get that work insert into your vhost config file NameVirtualHost *:80 (edit the port if you use a different one)
make sure your host file includes
127.0.0.1 dhs
127.0.0.1 deforay
and access your webpage in your browser with
http://dhs
http://deforay

Related

multiple rails app in apache using passenger on centos

I have been following this guide on how to run a rails app in an apache server. I have successfully made it work but with only 1 rails app running. I tried editing the httpd.conf with 2 virtual hosts.
LoadModule passenger_module /usr/local/rvm/gems/ruby-2.1.1/gems/passenger-4.0.42/buildout/apache2/mod_passenger.so
PassengerRoot /usr/local/rvm/gems/ruby-2.1.1/gems/passenger-4.0.42
PassengerDefaultRuby /usr/local/rvm/wrappers/ruby-2.1.1/ruby
RackEnv development
<VirtualHost *:3000>
ServerName ***.***.***.***
# !!! Be sure to point DocumentRoot to 'public'!
DocumentRoot /var/www/html/testapp/public
<Directory /var/www/html/testapp/public>
# This relaxes Apache security settings.
AllowOverride all
# MultiViews must be turned off.
Options -MultiViews
</Directory>
</VirtualHost>
<VirtualHost *:3001>
ServerName ***.***.***.***
# !!! Be sure to point DocumentRoot to 'public'!
DocumentRoot /var/www/html/testapp2/public
<Directory /var/www/html/testapp2/public>
# This relaxes Apache security settings.
AllowOverride all
# MultiViews must be turned off.
Options -MultiViews
</Directory>
</VirtualHost>
but it seems only port 3000 is working.
You'll need to make sure you have the other server set up on port 3001
Port
The problem you'll have is that you're capturing the same request (to same domain / IP), except listening on different ports. If you want to access the different sites, therefore, you have to access by the ports you define.
#app1 -> ***.***.***.***:3000
#app2 -> ***.***.***.***:3001
This should give you the ability to access your Rails apps respective to your apache implementation.
--
VirtualHosts
If I were you, I'd either create a virtualhost with a directory setup:
/etc/apache2/apache2.conf
<VirtualHost *:80>
ServerName [ip]
# !!! Be sure to point DocumentRoot to 'public'!
DocumentRoot /apps/public
#Other App
Alias /app1 /apps/app1/public
<Location /reach>
PassengerAppRoot /apps/app1/public
RackEnv production
RackBaseURI /app1
</Location>
#Other App
Alias /app2 /apps/app2/public
<Location /apps>
PassengerAppRoot /apps/app2/public
RackEnv production
RackBaseURI /app2
PassengerFriendlyErrorPages off
</Location>
</VirtualHost>
This will give you a much simpler way to handle the incoming requests:
***.***.***.*** -> IP index
***.***.***.***/app1 -> application 1
***.***.***.***/app2 -> application 2
I'd be much more tempted to use the above setup than your own.
Further, you may also wish to actually deploy separate virtual hosts for your applications. The above example details how you'd introduce different directories for your different apps - if you'd prefer to create different virtualhosts, here's what you can do:
#etc/apache2/sites-available/default (standard site - I'd recommend static)
<VirtualHost *:80>
ServerAdmin webmaster#localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
#etc/apache2/sites-available/app1
<VirtualHost *:80>
ServerName yourdomain.com
ServerAlias yourdomain.com
DocumentRoot /apps/app1/public
<Directory /apps/app1/public>
Allow from all
Options -MultiViews
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
Don't forget to symlink these to your /etc/apache2/sites-enabled folder:
> $ ln -s /etc/apache2/sites-available/app1 /etc/apache2/sites-enabled/app1

Apache VirtualHosts for a Rails app

On a server there is already a site running. I'm trying to make my rails app run on a url of the same site i.e the site is example.com and the rails app will run at example.com/railsapp.
The rails app will use passenger and the server is ubuntu.
The current virtualhosts file looks like;
<VirtualHost *:80>
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
<Directory /var/www/examplesite/>
Options Indexes FollowSymlinks Multiviews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
Do I need to add a separate hosts file?
<VirtualHost *:80>
ServerName ???
DocumentRoot /var/www/railsapp/public
<Directory /var/www/railsapp/public>
AllowOverride all
# MultiViews must be turned off.
Options -MultiViews
</Directory>
</VirtualHost>
I'm not sure what to do...
The proper solution is documented in the Deploying to a sub URI Passenger documentation:
Suppose that you already have a virtual host:
<VirtualHost *:80>
ServerName www.phusion.nl
DocumentRoot /websites/phusion
<Directory /websites/phusion>
Allow from all
</Directory>
</VirtualHost>
And you want your Rails application, located in /websites/rails, to be accessible from the URL http://www.phusion.nl/subapp.
To do this, you need to perform the following:
Set Alias {SUBURI} {PATH TO YOUR APPLICATION'S PUBLIC DIRECTORY}.
Create a <Location /{SUBURI}> block.
Inside the Location block, set PassengerBaseURI /{SUBURI}.
Inside the Location block, set PassengerAppRoot {PATH TO YOUR APPLICATION ROOT}.
Create a <Directory {PATH TO YOUR APPLICATION'S PUBLIC DIRECTORY}> block.
Inside the Directory block, set Allow from all.
Inside the Directory block, disable MultiViews.
Here is an example:
<VirtualHost *:80>
ServerName www.phusion.nl
DocumentRoot /websites/phusion
<Directory /websites/phusion>
Allow from all
</Directory>
# These have been added:
Alias /subapp /websites/rails/public
<Location /subapp>
PassengerBaseURI /subapp
PassengerAppRoot /websites/rails
</Location>
<Directory /websites/rails/public>
Allow from all
Options -MultiViews
</Directory>
</VirtualHost>

Running Rails on Apache2

I have a linode server and was running a single website for dev purposes using webrick, now i want to put it into production and use Apache2 which I have installed and is up and running the classic It Work's! page which is expected.
Now I want to run multiple sites on this VPS I am using the current configuration which works fine for striaght HTML but will not run the web apps unless I run them on another port (rails s -p3500 etc) as port 80 is already taken up by Apache.
<VirtualHost *:80>
ServerName datumpoint.bizmodev.com
# ServerAlias *.example.com
DocumentRoot /var/www.bizmodev.com
<Directory "/var/www.bizmodev.com">
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerName homehounduk.co.uk
ServerAlias *.homehounduk.co.uk
DocumentRoot /var/www.homehounduk.co.uk
<Directory "/var/www.homehounduk.co.uk">
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Do i need to use passenger or something else to get this working? i have tried changing the virtual hosts to different ports and stuff but just end up getting a 403.
Any help would be appreciated.
this line:
<VirtualHost *:80>
you are telling to your apache that it will listen to anything on port 80
it you change to something like this:
<VirtualHost www.myawesomeurl.com:80>
in this case you are telling apache that everything that comes as a request from this address (www.myawesomeurl.com) on port 80 will use that options.
I think you want something like this:
# Basically your home, like: www.myhome.com
<VirtualHost *:80>
ServerName datumpoint.bizmodev.com
# ServerAlias *.example.com
DocumentRoot /var/www.bizmodev.com
<Directory "/var/www.bizmodev.com">
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
# Your custom site
<VirtualHost www.something.com:80>
ServerName homehounduk.co.uk
ServerAlias *.homehounduk.co.uk
DocumentRoot /var/www.homehounduk.co.uk
<Directory "/var/www.homehounduk.co.uk">
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
and dont forget to point the www.something.com to the same ip as the www.myhome.com
Combine this with passenger and you will have one server running many rails apps and many php instances or html pages or anything you want.

Apache: how to config ip address without SeverName?

I want to set my own sever to run my ruby on rails project(with passenger plugin). I use Apache2 on Ubuntu11.04(sever version).
It's my first time to use Apache and I have read some documents.
All the docs ask me to set SeverName,such as Apache doc and ubuntu docs.
Unfortunately, I don't have a domain name, can I just set IP address and use IP address to access this sever?
If it's ok, how should I do?
It's the config sample given by passenger:
<VirtualHost *:80>
ServerName www.yourhost.com
DocumentRoot /somewhere/public
<Directory /somewhere/public>
AllowOverride all
Options -MultiViews
</Directory>
</VirtualHost>
Thanks!
Comment out the line:
# NameVirtualHost *:80
Comment out any <VirtualHost> blocks.
Find the line:
DocumentRoot "/var/www/html" # or whatever your config uses for the overall apache document root.
Change it to your rails application's root.
DocumentRoot "/somewhere/public"
Then add your other config settings to a <Directory> block.
<Directory /somewhere/public>
AllowOverride all
Options -MultiViews
</Directory>
I haven't tested this for sure, but you should be able to get to it by only visiting the IP address. Make sure you have Passenger installed, have run passenger-install-apache2-module, and have added the appropriate module loading lines to your apache config.
/etc/apache2/httpd.conf
<VirtualHost *:80>
ServerName example.com
DocumentRoot /home/urpc-name/RailsApps/anything/public
<Directory /home/webonise/RailsApps/anything/public>
RailsEnv development
AllowOverride all
Options -MultiViews
</Directory>
</VirtualHost>
In server name:select ur virtual name...u can choose anything
In document root and directory,give your rails project path
Select rails environment in RailsEnv
/etc/hosts
127.0.0.1 example.com
Put server name in virtual host-127.0.0.1 is the localhost
Then just go to your browser and type example.com
Hope this helps

symfony sandbox and virtual host

I have installed symfony sandbox 1.2 and created a virtual host by modifying apache config like this (following this tut http://www.symfony-project.org/askeet/1_0/en/1 but I adapted as sandbox dirs are different from their tuts):
NameVirtualHost 127.0.0.1:80
<VirtualHost 127.0.0.1:80>
ServerName askeet
DocumentRoot "c:/webserver/www/sf_sandbox/web"
DirectoryIndex index.php
Alias /sf "c:/webserver/www/sf_sandbox/web/images/sf"
<Directory "c:/webserver/www/sf_sandbox/web">
AllowOverride All
Allow from All
</Directory>
<Directory "c:/webserver/www/sf_sandbox/web/images/sf">
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
And modified my hosts file to map askeet to 127.0.0.1
It works fine except symfony tells me:
If you see no image in this page, you
may need to configure your web server
so that it gains access to the
symfony_data/web/sf/ directory.
Indeed I can't see any images which are stored in c:/webserver/sf_sandbox/web/images/sf as for my symfony sandbox, why ?
Your hosts file should be
<VirtualHost 127.0.0.1:80>
ServerName askeet
DocumentRoot "c:/webserver/www/sf_sandbox/web"
DirectoryIndex index.php
Alias /sf "c:/webserver/www/sf_sandbox/web/sf"
<Directory "c:/webserver/www/sf_sandbox/web">
AllowOverride All
Allow from All
</Directory>
<Directory "c:/webserver/www/sf_sandbox/web/sf">
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
because the sf directory is in web/ directory and not in web/images directory?

Resources