Skip to content

Commit

Permalink
Fixing time in posts
Browse files Browse the repository at this point in the history
  • Loading branch information
egachi committed Feb 3, 2023
1 parent 2b9d6a4 commit 5c29142
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ categories:
- How-To # How-To, Diagnostics, Configuration, Troubleshooting, Performance
header:
teaser: "/assets/images/javafunction.png" # There are multiple logos that can be used in
date: 2020-01-20 00:00:00
date: 2020-01-20 12:00:00

---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ categories:
- Troubleshooting # How-To, Diagnostics, Configuration, Troubleshooting, Performance
header:
teaser: "/assets/images/azurelinux.png" # There are multiple logos that can be used in "/assets/images" if you choose to add one.
date: 2020-03-25 00:00:00
date: 2020-03-25 12:00:00
---

Looking into the standard_init_linux.go error when working with Azure App Service on Linux.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ header:
teaser: "/assets/images/nodelinux.png"
toc: true
toc_sticky: true
date: 2020-04-30 00:00:00
date: 2020-04-30 12:00:00
---

When you create production build for your React, Angular, other Node framework the files will either be placed in a `build` or `dist` directory depending on the framework. App Service on Linux uses *Oryx* to detect, build, and start your application. For more information about how this is done, please go to the [Oryx](https://github.com/microsoft/Oryx/blob/master/doc/runtimes/nodejs.md) GitHub page for more info. In order to serve the built content, you can perform either of the following.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ header:
# If your Blog is long, you may want to consider adding a Table of Contents by adding the following two settings.
toc: true
toc_sticky: true
date: 2021-01-05 00:00:00
date: 2021-01-05 12:00:00
---

Configure and Deploy App Service on Linux.
Expand Down
2 changes: 1 addition & 1 deletion _posts/2021-06-17-installing-tcpping-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ header:
teaser: "/assets/images/azurelinux.png"
toc: true
toc_sticky: true
date: 2021-06-17 00:00:00
date: 2021-06-17 12:00:00
---

A useful tool to help with diagnosing network related issues on Azure App Service is TcpPing. Below are the steps for installing the tool for Debian and Alpine based Docker images.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ header:
teaser: "/assets/images/Javalogo.png"
toc: true
toc_sticky: true
date: 2021-06-17 00:00:00
date: 2021-06-17 12:00:00
---

App Service Windows includes multiple versions of Tomcat for your choosing & uses IIS to quickly update your process path once any new runtime version is pinned. Still, there are use cases where you may be looking to tweak the server configuration or completely modify the existing Tomcat installation that's in use.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ header:

toc: true
toc_sticky: true
date: 2022-05-09 00:00:00
date: 2022-05-09 12:00:00
---

The App Service Linux Python images now come pre-configured with a code-profiler. This quickly allows us to collect traces for troubleshooting High Memory & High CPU against our running Python process without installing any additional packages within your application manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ header:
teaser: "/assets/images/javalinux.png"
toc: true
toc_sticky: true
date: 2022-05-20 00:00:00
date: 2022-05-20 12:00:00
---

The pre-built images for Tomcat on App Service Linux include the default Catalina Base located in /usr/local/tomcat. By design, any changes made outside of /home will not be persistent after restarts. So, if making changes to the Tomcat server, this would need to be done with a [startup script](https://docs.microsoft.com/en-us/azure/app-service/configure-language-java?pivots=platform-linux#shared-server-level-resources-1) or moving our entire Catalina base within /home, which is covered in this article.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ header:
teaser: "/assets/images/javalinux.png"
toc: true
toc_sticky: true
date: 2022-05-20 12:00:00
date: 2022-05-20 12:01:00
---
When dealing with High CPU, High Memory, or general performance scenarios on App Service Linux, it’s recommended to profile the application locally, but this may not always be possible nor reflect the same results. This may be due to the difference in load or environment configuration.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ header:
teaser: "/assets/images/Javalogo.png"
toc: true
toc_sticky: true
date: 2022-05-20 12:00:00
date: 2022-05-20 12:01:00
---
When dealing with High CPU, High Memory, or general performance scenarios on App Service Windows, it’s recommended to profile the application locally, but this may not always be possible nor reflect the same results. This may be due to the difference in load or environment configuration.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ header:
# If your Blog is long, you may want to consider adding a Table of Contents by adding the following two settings.
toc: true
toc_sticky: true
date: 2022-12-29 00:00:00
date: 2022-12-29 12:00:00
---

## In this blog post we will cover Github Actions Deployment to a Python App Service.
Expand Down
2 changes: 1 addition & 1 deletion _posts/2023-01-06-Modifiying-PHP-FPM-max-children.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ header:
# If your Blog is long, you may want to consider adding a Table of Contents by adding the following two settings.
toc: true
toc_sticky: true
date: 2023-01-06 00:00:00
date: 2023-01-06 12:00:00
---
This post will cover how to modify the value of pm.max_children for Linux PHP 8 app services.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ header:
# If your Blog is long, you may want to consider adding a Table of Contents by adding the following two settings.
toc: true
toc_sticky: true
date: 2023-01-27 00:00:00
date: 2023-01-27 12:00:00
---

In thos post we'll go over how to make Gunicorn target different worker classes for different types of applications - and other general settings we can configure through Gunicorn.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ header:
# If your Blog is long, you may want to consider adding a Table of Contents by adding the following two settings.
toc: true
toc_sticky: true
date: 2023-01-30 00:00:00
date: 2023-01-30 12:00:00
---

In this post we'll cover troubleshooting "failed to find attribute 'app' in 'app'" based messages for Python on App Service Linux.
Expand Down
2 changes: 1 addition & 1 deletion _posts/YYYY-MM-DD-Your-Article-Title.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ header:
# If your Blog is long, you may want to consider adding a Table of Contents by adding the following two settings.
toc: true
toc_sticky: true
date: YYYY-MM-DD 00:00:00
date: YYYY-MM-DD 12:00:00
---

## Overview that is using a H2 header which is useful for a TOC
Expand Down

0 comments on commit 5c29142

Please sign in to comment.