Some checks failed
Build and Deploy / build (push) Has been cancelled
- Update ingress to serve all domains (dev.manoonoils.com, manoonoils.com, www.manoonoils.com) - Update NEXT_PUBLIC_SITE_URL to https://manoonoils.com in deployment env vars - Prepare for 24h testing period before removing dev domain
18 lines
357 B
YAML
18 lines
357 B
YAML
apiVersion: traefik.io/v1alpha1
|
|
kind: IngressRoute
|
|
metadata:
|
|
name: storefront
|
|
namespace: manoonoils
|
|
spec:
|
|
entryPoints:
|
|
- web
|
|
- websecure
|
|
routes:
|
|
- match: Host(`dev.manoonoils.com`) || Host(`manoonoils.com`) || Host(`www.manoonoils.com`)
|
|
kind: Rule
|
|
services:
|
|
- name: storefront
|
|
port: 3000
|
|
tls:
|
|
certResolver: letsencrypt
|