Skip to content

Commit 03e38ac

Browse files
Apply suggestions from code review
Co-authored-by: Karl Erickson <[email protected]>
1 parent 0d7f91f commit 03e38ac

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

articles/spring-apps/enterprise/how-to-enterprise-deploy-static-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ Your configuration file must conform to the restrictions described in the follow
267267
|----------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|-----------------------------------------------|
268268
| Listening port | Web server must listen on port 8080. The service checks the port on TCP for readiness and whether it's live. You must use the templated variable `PORT` in the configuration file. The appropriate port number is injected when the web server is launched. | `listen {{PORT}}` | `Listen "${PORT}"` |
269269
| Log path | Config log path to the console. | `access_log /dev/stdout`, `error_log stderr` | `ErrorLog /proc/self/fd/2` |
270-
| File path with write permission | Web server is granted write permission to the **/tmp** directory. Configuring the full path requires write permission under the **/tmp** directory. | For example: **client_body_temp_path /tmp/client_body_temp** | |
270+
| File path with write permission | Web server is granted write permission to the **/tmp** directory. Configuring the full path requires write permission under the **/tmp** directory. | For example: **client_body_temp_path/tmp/client_body_temp** | |
271271
| Maximum accepted body size of client request | Web server is behind the gateway. The maximum accepted body size of the client request is set to 500 m in the gateway and the value for web server must be less than 500 m. | `client_max_body_size` should be less than 500 m. | `LimitRequestBody` should be less than 500 m. |
272272

273273
## Buildpack bindings

articles/spring-apps/enterprise/includes/quickstart-deploy-restful-api-app/update-application-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To reuse the Spring Apps instance creation steps in other articles, a separate m
1515

1616
Use the following steps to update the YAML file to use your Microsoft Entra registered application information to establish a relationship with the RESTful API application:
1717

18-
1. Locate **src/main/resources/application.yml** file for the `simple-todo-api` app. Update the configuration in the **spring.cloud.azure.active-directory** section to match the following example. Be sure to replace the placeholders with the values you created previously.
18+
1. Locate **src/main/resources/application.yml** file for the `simple-todo-api` app. Update the configuration in the `spring.cloud.azure.active-directory` section to match the following example. Be sure to replace the placeholders with the values you created previously.
1919

2020
```yaml
2121
spring:

articles/spring-apps/enterprise/includes/tutorial-authenticate-client-with-gateway/authenticate-client-with-gateway-consumption-plan.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ The Books RESTful API app acts as a resource server, which is protected by Micro
159159

160160
### 3.5. Update the configuration of Books Service app
161161

162-
Locate **books-service/src/main/resources/application.yml** file for the `books-service` app. Update the configuration in the **spring.cloud.azure.active-directory** section to match the following example. Be sure to replace the placeholders with the values you created previously.
162+
Locate **books-service/src/main/resources/application.yml** file for the `books-service` app. Update the configuration in the `spring.cloud.azure.active-directory` section to match the following example. Be sure to replace the placeholders with the values you created previously.
163163

164164
```yaml
165165
spring:

articles/spring-apps/migration/migrate-to-aks-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Because Azure Spring Apps and AKS are different types of cloud service offerings
3232
| Azure Spring Apps service | Azure Kubernetes Service |
3333
|------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
3434
| A *Service instance* hosts and secures a boundary for apps and other resources, and supports a custom virtual network. | A *Cluster* is the basic unit of deployment. Within a cluster, a *Namespace* is a virtual subdivision used to organize and isolate resources. It shares the same underlying network infrastructure defined by cluster's virtual network. Choosing between a dedicated cluster or a shared cluster with namespaces depends on your business needs. |
35-
| An *App* is one business app that serves as a child resource within a service instance. | A *business App* is a virtual concept in Azure Spring Apps and is made up of multiple resources in AKS. *Ingress* controls external access to services and sets rules for routing traffic to different services. A *Service* abstracts access to a set of pods. You can perform a blue-green deployment switch by updating a service to point to a different version of a deployment using labels. |
35+
| An *App* is one business app that serves as a child resource within a service instance. | *App* is a virtual concept in Azure Spring Apps and is made up of multiple resources in AKS. *Ingress* controls external access to services and sets rules for routing traffic to different services. A *Service* abstracts access to a set of pods. You can perform a blue-green deployment switch by updating a service to point to a different version of a deployment using labels. |
3636
| A *Deployment* is the version of an app. An app can have one production deployment and one staging deployment. | A *Deployment* manages the rollout and lifecycle of a specific application or service. It also enables rolling updates and rollbacks, enabling controlled, seamless application changes without downtime. |
3737
| An *Application instance* is the minimum runtime unit managed by the service. | A *Pod* represents one or more tightly coupled containers and hosts a single instance of a running application or workload. |
3838

0 commit comments

Comments
 (0)