@@ -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
543543az webapp update -g ${RESOURCEGROUP_NAME} -n ${WEBAPP_NAME} -${REGION_1} --client-affinity-enabled false
544544az 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
549549Setup 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
553553You can get a list of possible outbound IP addresses for
554554Java Web Apps using the Azure Portal - Web App => Properties:
@@ -558,7 +558,7 @@ Java Web Apps using the Azure Portal - Web App => Properties:
558558Each Web app has 9 possible outbound IP address. Write them down for both
559559Java Web apps.
560560
561- ###### Setup Redis Cache Firewall Rules for Outbound IP Addresses
561+ ##### Setup Redis Cache Firewall Rules for Outbound IP Addresses
562562
563563Use Azure CLI to create Redis Cache firewall rules for all
56456418 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
604604mvn 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
727727Similarly, redeploy the stateful Java Web app to second data center:
728728
0 commit comments