Questions tagged as ['wildcard-subdomain']

Score: 1
How can I tell if an installed cert is wildcard or not
fr flag

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?

Score: 10
Emoji avatar
Do SSL Certs containing two wildcards work (esp. on Let's Encrypt)?
vn flag

I want to include two wildcards in an SSL cert (will be) signed by Let's Encrypt: *.*.thost3.de. Will this cert match any hostnames matching that rule (e.g. example.example.thost3.de, hello.world.thost3.de), and can Let's Encrypt accept such wildcards exist in certs they signed?

Score: 0
Emoji avatar
Wildcard in apache virtualhost sitename
vn flag

I want to use wildcards in Apache. What I actually want to do is:

  1. ServerName wiki-*.thost3.de, and the * must be accessible by further configurations.
  2. Provide the contents at /var/www/wiki/*, where * is the same as what * means on the first line.

How to do that?

Hmm... Actually, it's not limited to Apache configs, some external scripts could do the second step, but Apache config is the best when ...

Score: 0
Remove discarded subdomains (wildcard) from subdomain scanners
in flag

I have a server which I use with my own domain name, with a wildcard DNS record. On the server side, I use the nginxproxy docker image to autogenerate VHosts. This allows me to add new websites/pages/services on the fly with their own subdomain simply by starting a new docker container. I also use the nginxproxy/acme-companion docker image to manage letsencrypt certificates for all of these automaticall ...

Score: 0
beNerd avatar
Proxy pass on apache (for a specific subdomain) with wildcard certificate
jp flag

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 a upstream node service on https. How do I achieve this in the vhost config below:

<VirtualHost *:443>
DocumentRoot /var/www/html
ServerName mydom ...
Score: 0
How do I set up a Let's Encrypt wildcard certificate for Apache on an Amazon Linux 2 AMI EC2 instance?
ug flag

I have a domain (let's say example.com), and I currently have a Let's Encrypt certificate set up and properly working for example.com and www.example.com for Apache on an Amazon Linux 2 AMI EC2 instance, and I'm trying to reconfigure the certificate to set it up for a wildcard domain (i.e., *.example.com).

I SSH'ed into the EC2 instance and ran the following command in an attempt to do this (with the rea ...

Score: 0
Serve new subdomains dynamically
pl flag

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 or subdomain, I have to create manually a new <VirtualHost>, restart the Apache server, etc. This is not possible here.

Example: if a visitor crea ...

Score: 0
Aleksey Pecheritsa avatar
How to create Cloud Run mapping to wildcard subdomain
cn flag

I host my app with cloud run and use domain from GoDaddy. It is work perfectly. Now I want to make possible have url address for every users account like user1.myapp.com, user2.myapp.com. How can I do it with cloud run and GoDaddy?enter image description here

Score: 0
PhilHarmonie avatar
How to configure wildcard subdomains together with some fixed names in NGINX?
cn flag

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 :3002
  • ...
  • *.example.com will reverse proxy to :4000
  • *.example.com/admin will reverse proxy to :5000
    • example.com/admin, fix1.example.com, fix2.example.com,... will not h ...
Score: 1
jz22 avatar
How to use a wildcard subdomain with static subdomains with Google Cloud services?
de flag

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 available at api-c.example.com.

There are is a dockerized Nginx container with a frontend deployed to App Engine at frontend-a.example.com. This is the  ...

Score: 0
Handling all subdomains as the domain itself
cn flag

I'm forwarding all e-mails for a domain owned by a friend to his real e-mail address. This works fine for his example.com itself (with the @example.com virtusertable entry):

% sendmail -C new.cf -bv AE@example.com
AE@example.com... deliverable: mailer relay, host [myrelay], user his@real.address

We'd like to expand the functionality to work for anything.example.com too, and are facing unexpected diff ...

Score: 0
Nodnarb3 avatar
Front Door Standard/Premium (Preview) - Unable to Add Wildcard Custom Domain with SSL Certificate
ar flag

I've got an Azure FrontDoor (preveiw) Premium endpoint setup and I'm trying to add a custom wildcard domain (*.example.com) so that I can use the Rule Set to direct traffic between server environments setup as origin groups.

I am using Azure DNS, and Azure KeyValut to hold the secret.

The problem I'm facing is that when adding the *.example.com custom domain, it will not let me select the wildcard c ...

Score: 1
Lion avatar
Wildcard CNAME record specified by libvirts dnsmasq:options namespace doesn't work, only specific subdomains works
jp flag

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, changed <network> to <network xmlns:dnsmasq='http://libvirt.org/schemas/network/dnsmasq/1.0'> and added the following options:

  <dnsmasq:o ...
Score: 0
With DNS e.g. A record, can I add a regex for any subdomain?
es flag

E.g. in my DNS providers UI, I have a A record for the main domain along the lines: mydomain.com.: <my server ip address>

This works fine. I'd like to obtain a wildcard SSL certificate to be able to add several subdomains.

Can I add a record of the form *.mydomain.com: <my server ip address> Is this normal or sound practice?