The term Virtual Host refers to the practice of running more than one web site (such as www.company1.com and www.company2.com) on a single machine. Virtual hosts can be "IP-based", meaning that you have a different IP address for every web site, or "name-based", meaning that you have multiple names ...
0
votes
0answers
6 views
Wildcard VirtualDocumentRoot config not working (XAMPP)
I'm trying to create a fallback for my virtual hosts. My configuration looks like this:
# Fetch all pre-defined hosts
Include "conf/extra/vhosts/*.conf"
# Fallback
NameVirtualHost *:80
...
0
votes
1answer
25 views
Double slash when 301ing from foo.com to www.foo.com with Django / Apache / mod_wsgi
We have a Django application running on Apache through mod_wsgi.
Our main domain is foo.com (without www), but we want to manage also www requests redirecting them to the main with a 301.
I've setup ...
0
votes
1answer
33 views
How to point a URL:PORT to specific directory in apache [closed]
I have Centos server and using PHP and Yii Framework. I have following configuration in /etc/httpd/conf/httpd.conf:
Alias /test "/var/www/test/"
<Directory "/var/www/test/">
Options Indexes ...
0
votes
3answers
17 views
Virtualbox can NOT mount an USB drive
I have on my laptop a windows system (windows 8), in which I have a Virtualbox installation(4.2.12, most recent). I have a virtual machine setup with the Virtualbox, and the OS is Ubuntu (12.0 LTS). I ...
-1
votes
0answers
19 views
Intranet and web server on one apache host, error: client denied by server configuration: /var/www/ [closed]
I have set up an apache configuration to host a Public folder to the web, and an Intranet folder to the local network only. Everything is working as I need it to, except that every time a page is ...
-1
votes
0answers
6 views
After MAMP upgrade, requesting my dev sites in Chrome adds www. and /htdocs/
I've been using MAMP for the last year or so, setup with virtual hosts and with my local sites stored in named folders in my /sites folder.
However, now, when I request my local site in Chrome (say: ...
0
votes
1answer
28 views
Why is ServerName not having any effect?
I have several sites configured as VirtualHost. All of them are running on the same system, same IP address. I want apache to redirect requests to one or another VirtualHost based on the DNS. That is ...
-1
votes
0answers
11 views
Apache (httpd) server how to force redirect to a non-www domain under while under https [closed]
On a default installation of CentOS (on AWS), I have the following configuration in my conf.d directory. So, besides for this configuration, I just have the default conf/httpd.conf file.
What I am ...
0
votes
1answer
20 views
RewriteRules stop working when I add a VirtualHost
I have a bunch of RewriteRules that are working fine, and must exist to every hostname that the server replies to. An example:
RewriteRule ^/file\.js /var/pear/Package/file\.js [QSA,L]
Now, I ...
1
vote
2answers
47 views
Symfony2 production; Apache VirtualHost not working
I'm a novice to Symfony2 and MVC frameworks but have some experience with PHP and Apache.
I developed a project on an Apache server on my workstation. I'm trying to deploy my first Symfony2 project ...
0
votes
1answer
9 views
Why are all virtual hosts pointing to the first virtual host?
After reinstalling a development environment on my windows 7 laptop all subdomains are pointing to the first virtual host in the .conf file!?
hosts (c:/windows/system32/drivers/etc/hosts)
127.0.0.1 ...
0
votes
0answers
22 views
.htaccess and custom site configuration on localhost
I'm trying to create development version of the working website locally.
I need this: web (index.php) will be accessed by url localhost/mysite.com, so if enter this url to browser, It will be ...
0
votes
0answers
14 views
Include a second CONFFILE in httpd
I am trying to include a CONFILE in /etc/init.d/httpd, for this i use the
htttpd -f /etc/httpd_new/conf/httpd.conf command, but when i use it i got this error :
httpd: apr_sockaddr_info_get() ...
0
votes
2answers
73 views
How to create a virtual host with vagrant and chef
I've setup my first vagrant machine, with some cookbooks downloaded through knife.
I'm stuck with the setup of a virtual host.
Here's my vagrantfile:
Vagrant.configure("2") do |config|
...
-1
votes
2answers
23 views
host many domain to the same server [closed]
i have this domain:
site 1: /var/www/portail1
with this conf:
/etc/httpd/conf.d
what i want to do is to add this domain to the same server:
site 2: /var/www/portail2
But my question ...
0
votes
0answers
12 views
How to configure a subdomains in Acrylic?
In my AcrylicHosts.txt file I have current configuration:
127.0.0.1 localhost
127.0.0.1 *.domain.vh
127.0.0.1 *.vh
127.0.0.1 *.*.vh
Unfortunately, if I'll create a directory blog.domain this will ...
0
votes
0answers
31 views
running php script inside virtual directories centos
I am having a devil of a time trying to get PHP scripts to run inside virtual directories on a CentOS web server. The server has a LAMP install and phpMyAdmin.
The server has virtual directores. ...
-1
votes
1answer
18 views
Setting up virtual hosts, Apache [closed]
I want to learn more about virtual hosting and maybe start my own business, today I set up Apache HTTP-virtual-hosts configuration file and hosts file in C:\Windows\System32\drivers\etc
but this only ...
-1
votes
1answer
35 views
Virtual Hosts - site redirects to xampp index page [closed]
I have setup the following virtual hosts on XAMPP - site.dev works except it goes to the XAMPP root (the same page as if I enter http://localhost in the browser).
<VirtualHost *:80>
...
0
votes
2answers
33 views
How to set file permissions for root in OS X / Terminal?
I'm having issues with getting Apache working with my virtualhosts, and I've narrowed it down to the fact that I'm adding manually-created virtual hosts (vs. the others which are created by a python ...
0
votes
1answer
20 views
Using multiple sites in virtual hosts (apache)
I have installed XAMPP on my windows box - I am trying to run multiple websites in the virtual hosts file but no matter I seem to do I can only run one site at a time. e.g to run site three i need to ...
0
votes
0answers
30 views
+50
How do I use https (SSL) in XAMPP while using virutal hosts
I am writing a php app on my local machine and would like to test to see if SSL is working. Bear with me because this is the first time I've ever used SSL.
So far this is what I've done:
Created a ...
-1
votes
1answer
43 views
XAMPP another webserver is using port 80 [closed]
I just attempted to install a virtual server following this tutorial. I'm at the stage where I'm supposed to restart Apache and I'm getting the following message when I try to turn Apache back on.
...
0
votes
1answer
23 views
Using iRedMail with a django site on the same server
I am trying to create a small django site and use iRedMail for e-mail. I installed iRedMail first, and ensured that it worked. I could go to both www.domain.com/iredadmin and www.domain.com/mail and ...
0
votes
0answers
28 views
Apache: block file access outside Document Root
I manage with easyphp numerous sites locally, for convenience and speed.
I config with Apache an Alias for each site:
Alias "/site.com" "C:/Work/site.com/Dev"
<Directory "C:/Work/site.com/Dev"
...
-1
votes
0answers
18 views
Configuring vhosts in WAMP on Windows 7 [closed]
I've been looking at other people's answers to this problem, but none of them seem to help me. I'm trying to set up a vhost on another drive on the local machine, accessible by port, rather than name. ...
1
vote
1answer
84 views
Virtual Host on AWS EC2 Running Ubuntu
I'm trying to configure a virtual host to my EC2 instance. I'm using ubuntu on my EC2 instance and apache2 as web server.
I have 3 applications (web-based) in 3 different folders in /var/www:
- ...
0
votes
1answer
30 views
Building Virtual Host on Mac - Is not working
I'm trying to build an Virtual Host on my Mac OS, but it's not working.
The apache2/error_log recorded the follow message
httpd: Could not reliably determine the server's fully qualified domain ...
0
votes
0answers
13 views
Mail domain pointed to another website when typed in a browser
I have my Apache server configured for name-based virtual hosts and have multiple domains pointed to the same IP that is owned by my server.
Before I started a mail server on one of those domains. ...
0
votes
0answers
16 views
Apache 2.2 SSLCADNRequestFile Option
I'm configuring my Apache server on RHEL5 with httpd 2.2.3. Users authenticate using a smartcard with several certificates, but we want to limit the choices to browser displays to a specific one. ...
1
vote
2answers
23 views
httpd virtualhost - subdomains
I'm having some issue with setting/adding sub domains.. to my apache2(httpd)..
I have this in my httpd.conf
NameVirtualHost *:80
<VirtualHost *:80>
ServerAdmin stitofte@homiecraft.pro
...
0
votes
1answer
21 views
Apache virtualhost directive: only ServerName, nothing else
If I create a vhost directive, it will always catch all requests on this IP address. Even if I set a ServerName, all other requests will be redirected to the DocumentRoot of this entry.
How can I drop ...
0
votes
0answers
52 views
Apache virtual hosts not working when using subdomain
I am trying to setup a virtual host. I have done this many times before on different servers with no problem, however, I have never tried it using a subdomain.
For some strange reason when I go to ...
0
votes
0answers
32 views
WAMP, localhost .dev virtualhst domain and FB login by php sdk
I've downloaded facebook php-sdk from github and tried examples from this project.
My local testing server is WAMP with virtualhost .dev domain. Any directory placed in www will be accesable via ...
0
votes
0answers
22 views
Solution for GPU processing on server
so i just finished build a dual xeon e5-2690 server with 126GB ECC RAM, i installed Esxi 5.0 and installed the Virtual Machines, my problem is those VMs run a lot staff with Flash ...
0
votes
0answers
84 views
NGINX - Domain can't get to the correct server blocks
I'm trying to host multiple websites using Nginx in a single server with single IP only.
This is what I did:
I created a domain name ninjoequah.uni.me , uni.me is a free domain.
I enter my public ...
0
votes
1answer
25 views
Resolving virtual hosts apache 2
I'm trying to setup my apache server to access certain folders when I type addresses like test1.example.com test2.example.com etc.
So far I read and did many things but with no success yet. I'll be ...
1
vote
1answer
41 views
Setting up subdomain in apache ubuntu [closed]
I try to add a new subdomain new.domain.in to my site domain.in.
I did the following
Create new file new.domain.in in /etc/apache2/sites-available/ based on the existing domain.in configuration ...
0
votes
1answer
23 views
VirtualHost configuration overwriten the main domain
I configure apache to the main domain in my server and it works just fine if just that domain:
in httpd.conf:
Listen maindomain.com:80
DocumentRoot "/home/webserver/maindomain/html"
but add a ...
0
votes
0answers
30 views
php file operations permission denied
I have two Virtual Hosts on Redhat Enterprise server, one of which functions as desired. The second I a have problems when using PHP to do any kind of file operations. As far as I can tell both ...
0
votes
0answers
62 views
apache VirtualHost configuration goes Fedora Test Page
I configure VirtualHost in apache as follows:
Listen xx.xx.xx.xx:80
<VirtualHost myDomain.com>
DocumentRoot /home/webserver/myDomain/html
ServerName myDomain.com
ServerAlias myDomain.com
...
1
vote
1answer
63 views
Setting Rewrite Rules for Zend Skeleton
I use an opensuse 12.2 os, apache 2.2, zend framework 2.
In order to have the skeleton app of the framework i set a virtual host in apache's files.
Here is definition
<VirtualHost 127.0.0.1>
...
0
votes
0answers
112 views
RemoteFx USB Redirection is not working on wondows Server 2012 VM
I'm running Windows Server 2012 base OS, In that Hyper-V is running, i have deployed Windows 8 enterprise VM and Windows Server 2012 VM on Hyper-v. I'm trying to use Remote fx usb redirection feature. ...
1
vote
1answer
38 views
How to do virtualhost redirection with appended querystring the right way
i am confused about some redirect rules that i needed to do in production. I've seen a lot of examples in stackoverflow already and they have build a little bit my knowledge about redirection. However ...
0
votes
0answers
37 views
mod_rewrite: multiple domains on one server, mod_rewrite refuses to work on one
I have a server that serves several domains from a single IP address using Apache's Virtual Host shenanigans. Three of the sites are required to redirect to www if it's omitted from the URL.
I have ...
0
votes
1answer
61 views
Wildcard subdomains on a localhost
On my hosting I'm using this solution:
Username as subdomain on laravel
But how do I set up something like this if I have a virtual host with my-app.dev?
1
vote
0answers
41 views
Multilanguage site by virtual subfolder (Apache)
I want to have an architecture like that on a multilingual site :
www.mydomain.tld/en/mypage
www.mydomain.tld/fr/mypage
I have multiple Rewrite rule like that :
RewriteRule ^mypage$ ...
0
votes
3answers
68 views
VIrtualHost Options returns an index of the site folder
I am not sure why this is happening as I am not very knowledgeable when it comes to Apache. Below is a copy of my VirtualHost.
If this gives any extra help as to how to get it to work, I am trying ...
1
vote
0answers
24 views
Permission denied when overwriting files with Codekit
Using MAMP Pro, I've set up a virtual host for a site where I run Codekit (http://incident57.com/codekit) to autocompile LESS files to its directory. I've set the owner of the host to www, this ...
0
votes
2answers
20 views
Wamp service not gettting started after vhost setting
Recently I had made some changes in httpd-vhosts file to create a virtual host. After which the wamp icon status no turning to green, hence remains orange. Ive cheked for other http programs if had ...

