Questions tagged [wildcard-subdomain]

Wildcard subdomains are useful to allow end users of a domain-based multisite network to create new sites on demand. In this type of network each new site has its own subdomain, and the wildcard configuration means that those subdomains do not have to be configured individually.

456 questions
3
votes
1 answer

How to create subdomain for each store for a multivendor ecommerce website?

Im working on a multivendor ecommerce website and I want to create subdomain for each new user. My question is how do I create dynamic subdomains like http://storename.mywebsite.com ? For the moment my website is working this way:…
3
votes
0 answers

How to create / handle subdomains on the fly using NGINX and Node Js?

I am working on a MEAN stack SAAS application where I want to provide each user with their own unique subdomain. For example, I want the user John Doe to have the following subdomain to his name: johndoe.website.com. The application is nearly ready…
3
votes
2 answers

Share session between some subdomains in Rails?

Is it possible share session for some special subdomain? For example I've some subdomain: admin.example.com manager.example.com user.example.com and dynamic subdomain with regex: user.*.example.com (user.sub1.example.com) when user login through…
Nguyen Ruby
  • 211
  • 2
  • 10
3
votes
1 answer

Implementing Multi-tenancy in Laravel

I am using Laravel 5.4 with having Laravel Voyager Installed. The main requirements of the project are to have the multi-tenant domain based application i.e. app.com and {client}.app.com I have been trying to load configurations based on a subdomain…
Saad Bhutto
  • 594
  • 1
  • 8
  • 22
3
votes
1 answer

Appending extra sub-domain to currently existing Let's Encrypt SSL certificate created by Certbot

I have a domain xyz.com and I have created a Let's Encrypt SSL certificates using Cetbot for xyz.com and www.xyz.com with the following command sudo certbot --nginx -d xyz.com -d www.xyz.com Now if I want to add blog.xyz.com, How could I append and…
Abdu Tawfik
  • 53
  • 1
  • 8
3
votes
1 answer

Use wildcard in ingress host name

I want to redirect all *.xxxx.com requests to m-*.xxxx.com using kubernetes. Im using nginx for routing. Is there a way to do this? Im currently having '*.xxxx.com' in ingress definition,but it doesnt accept something like this : 'm-*.xxxx.com'
3
votes
2 answers

Redirect Domain & Sub-domain to HTTPS

I am trying to redirect my domain and sub domain to https. I have subscribed to Wildcard SSL and made below modifications to htaccess file, as per this guide. RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$…
sutro
  • 623
  • 6
  • 13
3
votes
0 answers

DNS wildcard issue - after adding Cname record for google Domain verification

I've a domain, let's say abcd.com, For this domain, We have a wildcard A record pointing to an IP say, 12.34.56.78, * => 12.34.56.78 So, all subdomains of abcd.com point to 12.34.56.78. So, when I access small.abcd.com, it points to 12.34.56.78.…
3
votes
1 answer

Is it possible to have a wildcard in the middle of a sub/sub-subdomain etc?

If I wanted to have a website domain which reads at.______.last.com, where the middle word/domain can change OR not be there at all (e.g. at.long.last.com, at.final.last.com OR without e.g. at.last.com), is this possible or would that require…
3
votes
1 answer

Wildcard X.509 Certificates -- Do they make sense in development environments

I just started working for a new company. They are an engineering company focused mostly on hardware. They don't have a lot of experience with big data dev/test environments. The company has extensive IT security policies. One of them is…
skmansfield
  • 1,413
  • 3
  • 19
  • 41
3
votes
1 answer

use dynamic subdomains with nodejs

hello i am new to Nodejs. I want to use dynamic subdomains to access my API and through subdomain prefix I can manage my API data. Suppose I gave domain like domain:3000 and sub-domain could be a.domain:3000 or b.domain:3000 or anything prefixed to…
Ritu Gupta
  • 507
  • 2
  • 8
  • 22
3
votes
2 answers

Can I use wildcard SNI matching with HAProxy?

I'm looking around trying to find an example of HAProxy matching SNI wildcards, and my searching is bringing up similarly titled, but unrelated questions about certificates. Specifically I need to route nonce domains for dvsni with acme /…
coolaj86
  • 74,004
  • 20
  • 105
  • 125
3
votes
1 answer

Wildcard subdomain for some but not all values on DNSimple

I have an app that is roughly fractured between a server serving front end and one serving an API. We'd like to add a wildcard to catch usernames on the subdomain and direct those to the front end server. So my URLs map like so: Server that serves…
Tyler
  • 11,272
  • 9
  • 65
  • 105
3
votes
3 answers

Problem with sessions, subdomains and authlogic in Rails

I've got a rails app with authlogic authentication and a username.domain.com structure built with subdomain-fu. But my session breaks when going from domain.com to username.domain.com. I've tried to add config.action_controller.session = {:domain =>…
Alfred
  • 7,071
  • 4
  • 27
  • 35
3
votes
1 answer

How can Nginx add the Subdomain as parameter when a proxy_pass to Tomcat is executed

What I am trying to achieve The web application should be able to support multiple subdomains without having to make any changes on the nginx or tomcat every time a new subdomain is used. (I have already done the required changes to DNS to support…
kensen john
  • 5,439
  • 5
  • 28
  • 36