-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #418 from mspnp/additional-css-fixes
additional css fixes for ref arch pages
- Loading branch information
Showing
18 changed files
with
606 additions
and
346 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
const formatIndex = require('./reference-architectures/index'); | ||
formatIndex(); | ||
const formatIndexFor = require('./reference-architectures/index'); | ||
formatIndexFor('.'); | ||
formatIndexFor('app-service-web-app'); | ||
formatIndexFor('dmz'); | ||
formatIndexFor('hybrid-networking'); | ||
formatIndexFor('identity'); | ||
formatIndexFor('virtual-machines-linux'); | ||
formatIndexFor('virtual-machines-windows'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
docs/reference-architectures/app-service-web-app/index.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"title": "App Service web application", | ||
"description": "Recommended architectures for a web applications running in Microsoft Azure.", | ||
"summary": "These reference architectures show proven practices for web applications that use Azure App Service and other managed services in Azure.", | ||
"series": [ | ||
{ | ||
"title": "Basic web application", | ||
"url": "./basic-web-app.md", | ||
"image": "./images/basic-web-app.svg", | ||
"summary": "A basic web application that uses Azure App Service and Azure SQL Database." | ||
}, | ||
{ | ||
"title": "Improved scalability", | ||
"url": "./scalable-web-app.md", | ||
"image": "./images/scalable-web-app.svg", | ||
"summary": "Improve scalability and performance by adding cache, CDN, and WebJobs for background tasks." | ||
}, | ||
{ | ||
"title": "Run in multiple regions", | ||
"url": "./multi-region.md", | ||
"image": "./images/multi-region-web-app.svg", | ||
"summary": "Run a web application in multiple regions to achieve high availability." | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"title": "Network DMZ", | ||
"description": "Explains and compares the different methods available for protecting applications and components running in Azure as part of a hybrid system from unauthorized intrusion.", | ||
"summary": "These reference architectures show proven practices for creating a network DMZ that protects the boundary between an Azure virtual network and an on-premises network or the Internet.", | ||
"series": [ | ||
{ | ||
"title": "DMZ between Azure and on-premises", | ||
"url": "./secure-vnet-hybrid.md", | ||
"image": "./images/secure-vnet-hybrid.svg", | ||
"summary": "Implements a secure hybrid network that extends an on-premises network to Azure." | ||
}, | ||
{ | ||
"title": "DMZ between Azure and the Internet", | ||
"url": "./secure-vnet-dmz.md", | ||
"image": "./images/secure-vnet-dmz.svg", | ||
"summary": "Implements a secure network that accepts Internet traffic to Azure." | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"title": "Connect an on-premises network to Azure", | ||
"description": "Recommended architectures for secure, robust network connections between on-premises networks and Azure.", | ||
"summary": "These reference architectures show proven practices for creating a robust network connection between an on-premises network and Azure. [Which should I choose?](./considerations.md)", | ||
"series": [ | ||
{ | ||
"title": "VPN", | ||
"url": "./vpn.md", | ||
"image": "./images/vpn.svg", | ||
"summary": "Extend an on-premises network to Azure using a site-to-site virtual private network (VPN)." | ||
}, | ||
{ | ||
"title": "ExpressRoute", | ||
"url": "./expressroute.md", | ||
"image": "./images/expressroute.svg", | ||
"summary": "Extend an on-premises network to Azure using Azure ExpressRoute." | ||
}, | ||
{ | ||
"title": "ExpressRoute with VPN failover", | ||
"url": "./expressroute-vpn-failover.md", | ||
"image": "./images/expressroute-vpn-failover.svg", | ||
"summary": "Extend an on-premises network to Azure using Azure ExpressRoute, with a VPN as a failover connection." | ||
}, | ||
{ | ||
"title": "Hub-spoke topology", | ||
"url": "./hub-spoke.md", | ||
"image": "./images/hub-spoke.svg", | ||
"summary": "The hub is a central point of connectivity to your on-premises network. The spokes are VNets that peer with the hub, and can be used to isolate workloads." | ||
} | ||
] | ||
} | ||
|
Oops, something went wrong.