├── icon.png ├── staticwebapp.config.json ├── readme.md ├── index.html ├── style.css ├── .github └── workflows │ └── azure-static-web-apps-mango-wave-014305a1e.yml └── FailoverRunbook.ps1 /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottmckendry/BlogMaintenancePage/main/icon.png -------------------------------------------------------------------------------- /staticwebapp.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "responseOverrides": { 3 | "404": { 4 | "redirect": "/", 5 | "statusCode": 302 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Blog Maintenance page 2 | 3 | This is a simple landing page that shows when my self hosted blog goes down. 4 | 5 | Learn more about it [here](https://scottmckendry.tech/maintenance-web-app-azure/). -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 |