Skip to content

Commit 1e8aa28

Browse files
authored
Updated README (#2)
* created project structure * updated * updated gitignore * updated * updated * updated * updated * update README.md * updated README * updated README * updated README
1 parent d70357b commit 1e8aa28

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ stateful Java apps on Azure, aka:
3737
* [Upload Redis Cache Session Manager Binary to App Service Linux](#upload-redis-cache-session-manager-binary-to-app-service-linux)
3838
* [Upload Session Manager Binary Artifact to First App through FTP](#upload-session-manager-binary-artifact-to-first-app-through-ftp)
3939
* [Upload Session Manager Binary Artifact to Second App through FTP](#upload-session-manager-binary-artifact-to-second-app-through-ftp)
40-
* [Disable Session Affinity Cookie (ARR cookie) for App Service Linux](#disable-session-affinity-cookie-arr-cookie-for-app-service-linux)
41-
* [Setup Redis Cache Firewall Rules for Java Web Apps](#setup-redis-cache-firewall-rules-for-java-web-apps)
42-
* [Retrieve Java Web Apps Outbound IP Addresses](#retrieve-java-web-apps-outbound-ip-addresses)
43-
* [Setup Redis Cache Firewall Rules for Outbound IP Addresses](#setup-redis-cache-firewall-rules-for-outbound-ip-addresses)
44-
* [Rebuild and Re-deploy the Stateful Java Web App to First Data Center](#rebuild-and-re-deploy-the-stateful-java-web-app-to-first-data-center)
45-
* [Re-deploy the Stateful Java Web App to Second Data Center](#re-deploy-the-stateful-java-web-app-to-second-data-center)
40+
* [Disable Session Affinity Cookie (ARR cookie) for App Service Linux](#disable-session-affinity-cookie-arr-cookie-for-app-service-linux)
41+
* [Setup Redis Cache Firewall Rules for Java Web Apps](#setup-redis-cache-firewall-rules-for-java-web-apps)
42+
* [Retrieve Java Web Apps Outbound IP Addresses](#retrieve-java-web-apps-outbound-ip-addresses)
43+
* [Setup Redis Cache Firewall Rules for Outbound IP Addresses](#setup-redis-cache-firewall-rules-for-outbound-ip-addresses)
44+
* [Rebuild and Re-deploy the Stateful Java Web App to First Data Center](#rebuild-and-re-deploy-the-stateful-java-web-app-to-first-data-center)
45+
* [Re-deploy the Stateful Java Web App to Second Data Center](#re-deploy-the-stateful-java-web-app-to-second-data-center)
4646
* [Open Scaled Stateful Java Web Apps on Azure](#open-scaled-stateful-java-web-apps-on-azure)
4747
* [Congratulations!](#congratulations)
4848
* [Resources](#resources)
@@ -537,18 +537,18 @@ ftp> bye
537537

538538
```
539539

540-
##### Disable Session Affinity Cookie (ARR cookie) for App Service Linux
540+
#### Disable Session Affinity Cookie (ARR cookie) for App Service Linux
541541

542542
```bash
543543
az webapp update -g ${RESOURCEGROUP_NAME} -n ${WEBAPP_NAME}-${REGION_1} --client-affinity-enabled false
544544
az webapp update -g ${RESOURCEGROUP_NAME} -n ${WEBAPP_NAME}-${REGION_2} --client-affinity-enabled false
545545
```
546546

547-
##### Setup Redis Cache Firewall Rules for Java Web Apps
547+
#### Setup Redis Cache Firewall Rules for Java Web Apps
548548

549549
Setup Redis Cache firewall rules for Java Web apps to access the cache.
550550

551-
###### Retrieve Java Web Apps Outbound IP Addresses
551+
##### Retrieve Java Web Apps Outbound IP Addresses
552552

553553
You can get a list of possible outbound IP addresses for
554554
Java Web Apps using the Azure Portal - Web App => Properties:
@@ -558,7 +558,7 @@ Java Web Apps using the Azure Portal - Web App => Properties:
558558
Each Web app has 9 possible outbound IP address. Write them down for both
559559
Java Web apps.
560560

561-
###### Setup Redis Cache Firewall Rules for Outbound IP Addresses
561+
##### Setup Redis Cache Firewall Rules for Outbound IP Addresses
562562

563563
Use Azure CLI to create Redis Cache firewall rules for all
564564
18 possible outbound IP addresses:
@@ -598,7 +598,7 @@ az redis firewall-rules create \
598598

599599
```
600600

601-
##### Rebuild and Re-deploy the Stateful Java Web App to First Data Center
601+
#### Rebuild and Re-deploy the Stateful Java Web App to First Data Center
602602

603603
```bash
604604
mvn package
@@ -722,7 +722,7 @@ az webapp start -g ${RESOURCEGROUP_NAME} -n ${WEBAPP_NAME}-${REGION_1}
722722

723723
```
724724

725-
##### Re-deploy the Stateful Java Web App to Second Data Center
725+
#### Re-deploy the Stateful Java Web App to Second Data Center
726726

727727
Similarly, redeploy the stateful Java Web app to second data center:
728728

0 commit comments

Comments
 (0)