skip to Main Content

Incorrect k8s deployment file – Nginx

I am following Cloud Guru K8S course and have issues with the template they provided. I can't see what’s wrong. apiVersion: apps/v1 kind: Deployment metadata: name: blue-deployment spec: replicas: 1 selector: matchLabels: app: bluegreen-test color: blue template: metadata: labels: app:…

VIEW QUESTION

nginx not serving statick files django 4.1

I am new in deploy projects my static files not serving with nginx. thats look my site-available/myprject file server{ listen 80; server_name mydomain; location = /favicon.ico { access_log off; log_not_found off; } location /static/ { autoindex on; alias /home/user/project/static; }…

VIEW QUESTION
Back To Top
Search