Skip to content

Commit d9c27c3

Browse files
committed
editing
1 parent 50562cf commit d9c27c3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/app-service/includes/configure-language-java-data-sources/configure-jboss-mysql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ ms.author: cephalin
3232
export RESOURCE_GROUP_NAME=<resource-group-name>
3333
export APP_NAME=<app-name>
3434
35-
# The lib type uploads to /home/site/libs by default
35+
# The lib type uploads to /home/site/libs by default.
3636
az webapp deploy --resource-group $RESOURCE_GROUP_NAME --name $APP_NAME --src-path mysql-connector-j-9.1.0.jar --target-path mysql-connector-j-9.1.0.jar --type lib
3737
az webapp deploy --resource-group $RESOURCE_GROUP_NAME --name $APP_NAME --src-path jboss_cli_commands.cli --target-path /home/site/scripts/jboss_cli_commands.cli --type static
38-
# The startup type uploads to /home/site/scripts by default and sets it up to run on startup
38+
# The startup type uploads to /home/site/scripts/startup.sh by default.
3939
az webapp deploy --resource-group $RESOURCE_GROUP_NAME --name $APP_NAME --src-path startup.sh --type startup
4040
```
4141

articles/app-service/includes/configure-language-java-data-sources/configure-jboss-postgresql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ ms.author: cephalin
3232
export RESOURCE_GROUP_NAME=<resource-group-name>
3333
export APP_NAME=<app-name>
3434
35-
# The lib type uploads to /home/site/libs by default
35+
# The lib type uploads to /home/site/libs by default.
3636
az webapp deploy --resource-group $RESOURCE_GROUP_NAME --name $APP_NAME --src-path postgresql-42.7.1.jar --target-path postgresql-42.7.1.jar --type lib
3737
az webapp deploy --resource-group $RESOURCE_GROUP_NAME --name $APP_NAME --src-path jboss_cli_commands.cli --target-path /home/site/scripts/jboss_cli_commands.cli --type static
38-
# The startup type uploads to /home/site/scripts by default and sets it up to run on startup
38+
# The startup type uploads to /home/site/scripts/startup.sh by default.
3939
az webapp deploy --resource-group $RESOURCE_GROUP_NAME --name $APP_NAME --src-path startup.sh --type startup
4040
```
4141

0 commit comments

Comments
 (0)