Questions tagged [wildcard-subdomain]
196 questions
1
vote
2 answers
Wildcard subdomain setup ... want to change host IP throws off client A records... what to do
Here is the current set up (in a nutshell).
The site is set up with a wildcard subdomain, so *.website.com is accessible. Clients can then domain map their own domains with an A record to the server IP address and it will translate the to…

Joe
- 13
- 2
1
vote
4 answers
Adding dynamic subdomains to my webserver?
I'm trying to add a wildcard sub-domain system to my web server, but its still not working,
These are the steps I took:
I made a new file, vhost.conf, in the directory
var/www/vhosts/www.example.com/conf/vhost.conf.
And I put:
ServerAlias…

Solomon Saleh
- 193
- 2
- 9
1
vote
1 answer
How to do multiple wildcard subdomains in a single zone file?
Is this valid use of wildcard CNAME records?
@ A 208.77.188.166
stage A 208.77.188.165
dev A 208.77.188.167
* CNAME @
*.stage CNAME stage
*.dev CNAME dev
Or should I just do this instead?
* A …

DataSurfer
- 111
- 2
1
vote
1 answer
DNS: Exclude subdomain from wildcard record
I would like to match all subdomains to return an A record (this works) but I would like to exclude one particular subdomain from resolving (not sending an A record at all).
*.example.com. IN A 127.0.0.1
exclude.example.com. IN A [no…

Teddy
- 195
- 2
- 8
1
vote
1 answer
How can I tell if an installed cert is wildcard or not
I installed a cert for my server a while ago using certbot, and cant remember if I setup as a wildcard or not, What command can I run to see if it is or not?

bart2puck
- 147
- 1
- 7
1
vote
0 answers
Proxy pass on apache (for a specific subdomain) with wildcard certificate
I am using apache2 server for a domain which has several subdomains. Each subdomain needs to be on https. I have a wildcard certificate installed for this and it works fine. Now one specific subdomain domain (api.mydomain.com) needs to proxypass to…

beNerd
- 117
- 5
1
vote
1 answer
Serve new subdomains dynamically
I have a service example.com that needs to allow users to host a few files in their own subdomain userpage-userabc.example.com, similarly as does Github with userabc.github.io.
I currently use Apache, and each time I want to configure a new domain…

Basj
- 709
- 3
- 11
- 29
1
vote
0 answers
How to configure wildcard subdomains together with some fixed names in NGINX?
I have example.com and the following use cases:
SSL only
www. will be redirected to example.com (no www.)
example.com will reverse proxy to :3000
fix1.example.com will reverse proxy to :3001
fix2.example.com will reverse proxy to…

PhilHarmonie
- 143
- 2
- 7
1
vote
1 answer
How to use a wildcard subdomain with static subdomains with Google Cloud services?
Let's assume we own the domain example.com. In Google Cloud, I would like to achieve the following setup.
There are two Cloud Run services available at api-a.example.com and api-b.example.com.
There is a third backend service running in App Engine…

jz22
- 121
- 4
1
vote
1 answer
DNS - Use two wildcards on different domain levels
I have a problem with this DNS configuration:
RecordType - Name - Value
A *.domain.com 1.1.1.1
A *.sub.domain.com 2.2.2.2
I would like all subdomains of * .sub.domain.com to point to 2.2.2.2 and…

Laischon
- 21
- 1
1
vote
1 answer
Apache2 wildcard alias
I have the following wildcard vHost:
ServerAdmin hostmaster@example.de
ServerName autodiscover.*.*
ServerAlias autoconfig.*.*
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.*)…

Tim Altgeld
- 49
- 1
- 7
0
votes
1 answer
CAA issuewild multi-level sub-sub-domains
CAA probably makes sure that issued certificates come from my CA and not from another one.
Given in the DNS:
example.com. 300 IN CAA 0 issue "ca.example.com"
example.com. 300 IN CAA 0 issuewild "ca.example.com"
Question 1: Can my CA use it to issue…

uav
- 534
- 5
- 20
0
votes
1 answer
Nginx Wildcard Subdomain Automatic Creation of Access Log File
I have almost 200 subdomains on NGINX and have the directive
access_log /var/log/nginx/$host-access.log;
The problem is none of the subdomain access log files actually exist, so the error log is loaded up with errors like
(13: Permission denied)…

Elkrat
- 25
- 4
0
votes
0 answers
IIS8 ssl error when using default website
I am running a server with several websites on IIS. The websites use host names, have bindings for http and https in order to redirect http to https using URL rewrite, and use SSL without any problems.
I have created a new website running WordPress…
0
votes
0 answers
Insecure Site Warning with CNAME Alias
For example I have a domain www.store.com which provides sub stores to clients as subdomains client1.store.com, client2.store.com etc..I am using wildcard ssl certificate for store.com and all subdomains.
My client store 1, has a main site and they…

Pamela
- 101