You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 05-Services-with-kubectl/README.md
+19-18Lines changed: 19 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,14 +33,30 @@ Observation: We don't need to specify "--type=ClusterIp" because default setting
33
33
- Create a deployment for Frontend Application (Nginx acting as Reverse Proxy)
34
34
- Create a NodePort service for load balancing frontend application.
35
35
-**Important Note:** In Nginx reverse proxy, ensure backend service name `my-backend-service` is updated when you are building the frontend container. We already built it and put ready for this demo (stacksimplify/kube-frontend-nginx:1.0.0)
36
+
-**Nginx Conf File**
37
+
```conf
38
+
server {
39
+
listen 80;
40
+
server_name localhost;
41
+
location / {
42
+
# Update your backend application Kubernetes Cluster-IP Service name and port below
0 commit comments