Questions tagged [wildcard-subdomain]

196 questions
2
votes
1 answer

Wildcard CNAME record specified by libvirts dnsmasq:options namespace doesn't work, only specific subdomains works

Since v5.6.0, libvirt added a dnsmasq namespace with the element, which allows to specify options directly to the underlying dnsmasq server. I'd like to create a wildcard DNS entry for my applications with that option. So I used virsh net-edit,…
2
votes
1 answer

Switch MS O365 name servers to another dns hosting service?

Currently we have client which is using Office365 for DNS hosting and also for email delivery. The domain is registered at an external registrar, but unfortunally the MS name servers have been used in the past for DNS management. The domain is like…
1
vote
0 answers

Specific sub-domain of DNS A record wildcard (*) doesn't work

I own two domain names (cyklussoftware.com and totalstudent.io). They are both registered through and managed by GoDaddy. Both of them have an @ and a * in their DNS A records. Both the @ and the * for both domains point to the same IP address. Last…
1
vote
0 answers

Apache .conf to redirect all http subdomains to corresponding https subdomains via wildcard alias

I need to point each http://sub.example.com subdomain to its corresponding https://sub.example.com. This is for use with WordPress multisite and my wildcard DNS records and wildcard Certbot cert. Everything works on http, now I need it all to be…
Jesse
  • 217
  • 3
  • 12
1
vote
0 answers

Why does app engine return a 404 error on my wildcard subdomain?

I have set up a wildcard subdomain for our project custom domain in app engine. The DNS CNAME has also been updated with the wildcard record. Our nameservers are with Cloudflare which supports wildcard CNAME. However, when a subdomain is entered in…
1
vote
1 answer

Wildcard on DocumentRoot rewrite for virtualhost

I use this config in apache2 for wildcard subdomain and works well: UseCanonicalName off Options FollowSymLinks VirtualDocumentRoot /var/www/domains/%0/httpdocs RewriteEngine On RewriteCond …
1
vote
1 answer

SSL for multiple servers and sub-domains

I have purchased a wildcard ssl certificate from RapidSSL and trying to set it up. Essentially I want to be able to use it as: example.com app.example.com *.app.example.com and that'd be also good if I can use on staging.app.example.com on another…
senty
  • 135
  • 6
1
vote
3 answers

Subdomains On The Fly, but different IPs

My team and I are creating a service that when user request, it creates a new server instance on the fly, with a different IP for each new instance. The issue is that I'm connecting from a client via WebSockets to that newly created server. But I…
1
vote
1 answer

GoDaddy Wildcard Certficiate on GoDaddy Hosted Site and Self Hosted Subdomains

I have a few self hosted servers on my domain and my main website is hosted on Godaddy itself. One self hosted server needs an EV Certificate and we didn't want to change that, but I figured the others could all use one wildcard certificate. This…
W.Jackson
  • 113
  • 5
1
vote
1 answer

mod_write HTTPS remove "www"

I'm trying to prepare for the upcoming Chrome "Non Secure display" v56 release. I run a website service: example.com I give each customer a sub domain off the service: cust1.example.com, cust2.example.com, etc. Years ago I configured the service to…
1
vote
1 answer

Setting up a wildcard catch-all VirtualHost on a domain that has existing valid subdomains

I am trying to configure my Apache instance to support a catch-all sort of construct for domains. I want the root domain, ie: example.com and all *.example.com to be directed to one specific DocumentRoot. However I have one caveat, I have existing…
chris
  • 167
  • 1
  • 9
1
vote
1 answer

Wildcard Subdomains and Custom Domain Names

I have some questions regarding Nginx configuration with wildcard subdomains, and then how custom domains come into the picture. Here is my situation. Let's say I own the site awesome.com. When a user signs up for my site, they automatically get a…
1
vote
2 answers

htaccess: limit to only certain sub-domains

I have a wildcard ssl setup on Apache for a domain so that I can create any type of sub-domain on the fly. DocumentRoot "/var/www/html" ServerName www.domain.com ServerAlias domain.com *.domain.com .... This works…
Tom
  • 143
  • 2
  • 11
1
vote
1 answer

How to have a dynamic DocumentRoot in apache2 site config file?

I need to configure my evelynblac.com.conf file so that any request with a subdomain gets mapped to the directory named after the subdomain (please see image in link). How can I do this? ServerName evelynblac.com …
Evelyn
  • 11
  • 3
1
vote
1 answer

Wildcard subdomain redirect to folder without changing the url

So I got my htaccess file set up, it look like this: Options +FollowSymLinks RewriteEngine on RewriteBase / # MAGIC RewriteCond $1 !/$ RewriteCond $1 !\. RewriteRule ^(.+)$ /$1/ [R=301,L] # //MAGIC RewriteCond %{HTTP_HOST} !^www\. RewriteCond…