Can someone direct me to how the DNS and firewall can be configured to allow for wildcard subdomains to be passed. My understanding is that the DNS needs to have an entry that specifies the server using the wild card "*". I was hoping someone, somewhere, had outlined the process. I am a developer and will need to help the network guy...
Hi,
I have a Rails+Apache+Passenger setup and my app serves wildcard subdomains. I need all www URLs to redirect to their non www equivalents.
www.example.net should redirect to example.net
www.subdomain.example.net should redirect to subdomain.example.net
My current vhost config is as below
<VirtualHost *:80>
ServerName exampl...
I am looking to create vanity url for my users. How can i do it?
I want something like username.domain.com
My second question is, can i also customize this upon client requests? Like let's say, Client says add a feature to my account, will I be able to do it since it's almost like a separate site within my site?
...
I have created some domain in /etc/hosts files
192.168.0.11 domain-11.com
192.168.0.12 domain-12.com
192.168.0.13 domian-13.com
and also created a files in /etc/apache2/site-avalaiable/ in respective machine like in machine 192.168.0.11 added a file domain-11.com
my /etc/apache2/sites-available/domain-11.com files contains
<...
Hi,
I have few sites, and they all have identical setup on a single server. Now, instead of the separate configuration file for each of them in sites-enabled directory, I want to have a common file.
Idea is this:
www.abc.com should have /var/www/abc as DocumentRoot,
www.xyz.com should have /var/www/xyz as DocumentRoot, etc.
Al...