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
Explain deploying dynamic front-end app with explicit wording based on one recent customer case from Toyota, in which case Toyota wrongly understood how to deploy a react app due to some vague wording here.
Copy file name to clipboardExpand all lines: articles/spring-apps/how-to-enterprise-deploy-static-file.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,15 +24,16 @@ This article shows you how to deploy your static files to Azure Spring Apps Ente
24
24
- An already provisioned Azure Spring Apps Enterprise tier instance. For more information, see [Quickstart: Build and deploy apps to Azure Spring Apps using the Enterprise tier](quickstart-deploy-apps-enterprise.md).
25
25
- One or more applications running in Azure Spring Apps. For more information on creating apps, see [How to Deploy Spring Boot applications from Azure CLI](./how-to-launch-from-source.md).
26
26
-[Azure CLI](/cli/azure/install-azure-cli), version 2.0.67 or higher.
27
-
- Your static files or dynamic front-end application.
27
+
- Your static files or dynamic front-end application (e.g: react app).
28
28
29
29
## Deploy your static files
30
30
31
31
You can deploy static files to Azure Spring Apps using NGINX or HTTPD web servers in the following ways:
32
32
33
33
- You can deploy static files directly. Azure Spring Apps automatically configures the specified web server to serve the static files.
34
-
- You can create your front-end application in the JavaScript framework of your choice, and then deploy your dynamic front-end application as static content.
35
-
- You can create a server configuration file to customize the web server.
34
+
- You can create your front-end application in the JavaScript framework of your choice, and then deploy your dynamic front-end application from source code. Azure Spring Apps will take care of its compilation as static content and use your configured web server to serve the static files.
35
+
36
+
Additionally, you can create a server configuration file to customize the web server.
36
37
37
38
### Deploy static files directly
38
39
@@ -51,7 +52,7 @@ For more information, see the [Configure an auto-generated server configuration
51
52
52
53
### Deploy your front-end application as static content
53
54
54
-
Use the following command to deploy a dynamic front-end application as static content.
55
+
Use the following command to deploy a dynamic front-end application from source code.
0 commit comments