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: content/guides/angular/deploy.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,7 +85,7 @@ This manifest defines two key Kubernetes resources, separated by `---`:
85
85
- Deployment
86
86
Deploys a single replica of your Angular application inside a pod. The pod uses the Docker image built and pushed by your GitHub Actions CI/CD workflow
87
87
(refer to [Automate your builds with GitHub Actions](configure-github-actions.md)).
88
-
The container listens on port `8080`, which is typically used by [Nginx](https://nginx.org/en/docs/) to serve your production Angular app.
88
+
The container listens on port `8080`, which is typically used by [NGINX](https://nginx.org/en/docs/) to serve your production Angular app.
In this section, you'll learn how to set up both production and development environments for your containerized Angular application using Docker Compose. This setup allows you to serve a static production build via Nginx and to develop efficiently inside containers using a live-reloading dev server with Compose Watch.
18
+
In this section, you'll learn how to set up both production and development environments for your containerized Angular application using Docker Compose. This setup allows you to serve a static production build via NGINX and to develop efficiently inside containers using a live-reloading dev server with Compose Watch.
19
19
20
20
You’ll learn how to:
21
21
- Configure separate containers for production and development
@@ -97,7 +97,7 @@ services:
97
97
path: .
98
98
target: /app
99
99
```
100
-
- The `angular-prod` service builds and serves your static production app using Nginx.
100
+
- The `angular-prod` service builds and serves your static production app using NGINX.
101
101
- The `angular-dev` service runs your Angular development server with live reload and hot module replacement.
0 commit comments