skip to Main Content

Nginx choosing wrong server

I want to handle to handle sub.domain.com and domain.com with different server blocks. So I created the following config: server { listen 443 ssl; server_name sub.domain.com; location / { ... } } server { listen 443 ssl; server_name domain.com; location…

VIEW QUESTION

Flask app deployment failed (Liveness probe failed) after "gcloud builds submit …" – Nginx

I am a newbie in frontend/backend/DevOps. But I am in need of using Kubernetes to deploy an app on Google Cloud Platform (GCP) to provide a service. Then I start learning by following this series of tutorials: https://mickeyabhi1999.medium.com/build-and-deploy-a-web-app-with-react-flask-nginx-postgresql-docker-and-google-kubernetes-e586de159a4d https://medium.com/swlh/build-and-deploy-a-web-app-with-react-flask-nginx-postgresql-docker-and-google-kubernetes-341f3b4de322 And…

VIEW QUESTION
Back To Top
Search