skip to Main Content

dynamic ssl certificate with nginx – Shopify

I had a Shopify-like application. So, my customer get sub-domain when they create store(i.e customer1.myShopify.com). to handle this case of dynamic sub-domains with nginx: server { listen 443 ssl; server_name admin.myapp.com; ssl_certificate /etc/letsencrypt/live/myapp/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/myapp/privkey.pem; location / { proxy_pass http://admin-front-end:80/;…

VIEW QUESTION
Back To Top
Search