deployment
Build CuraFlow HMS / build-and-deploy (push) Successful in 46s
Details
Build CuraFlow HMS / build-and-deploy (push) Successful in 46s
Details
This commit is contained in:
parent
38b69ac8b9
commit
11a82f81a2
|
|
@ -27,6 +27,6 @@ app.post('/whatsapp/webhook', async (req, res) => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
app.listen(port, () => {
|
app.listen(port, '0.0.0.0', () => {
|
||||||
console.log(`CuraFlow WhatsApp Mock Server running at http://localhost:${port}`);
|
console.log(`CuraFlow WhatsApp Mock Server running at http://0.0.0.0:${port}`);
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -37,9 +37,9 @@ kind: Ingress
|
||||||
metadata:
|
metadata:
|
||||||
name: curaflow-ingress
|
name: curaflow-ingress
|
||||||
annotations:
|
annotations:
|
||||||
kubernetes.io/ingress.class: apisix
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||||
cert-manager.io/cluster-issuer: letsencrypt-prod # Common pattern in these setups
|
|
||||||
spec:
|
spec:
|
||||||
|
ingressClassName: apisix
|
||||||
tls:
|
tls:
|
||||||
- hosts:
|
- hosts:
|
||||||
- curaflow.applaude.net
|
- curaflow.applaude.net
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue