Skip to content

Commit 2d34a28

Browse files
Corrected ms blog title ref
1 parent fd81a7c commit 2d34a28

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

content/learning-paths/servers-and-cloud-computing/nginx-on-azure/backgroud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ layout: "learningpathall"
1010

1111
Azure’s Cobalt 100 is Microsoft’s first-generation, in-house Arm-based processor. Built on Arm Neoverse N2, Cobalt 100 is a 64-bit CPU that delivers strong performance and energy efficiency for cloud-native, scale-out Linux workloads such as web and application servers, data analytics, open-source databases, and caching systems. Running at 3.4 GHz, Cobalt 100 allocates a dedicated physical core for each vCPU, which helps ensure consistent and predictable performance.
1212

13-
To learn more, see the Microsoft blog [Announcing the preview of new Azure virtual machine based on the Azure Cobalt 100 processor](https://techcommunity.microsoft.com/blog/azurecompute/announcing-the-preview-of-new-azure-vms-based-on-the-azure-cobalt-100-processor/4146353).
13+
To learn more, see the Microsoft blog [Announcing the preview of new Azure VMs based on the Azure Cobalt 100 processor](https://techcommunity.microsoft.com/blog/azurecompute/announcing-the-preview-of-new-azure-vms-based-on-the-azure-cobalt-100-processor/4146353).
1414

1515
## NGINX
1616

content/learning-paths/servers-and-cloud-computing/nginx-on-azure/deploy.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,17 @@ ETag: "68be5aff-267"
9292
Accept-Ranges: bytes
9393
```
9494

95-
Output summary:
96-
- HTTP/1.1 200 OK: Confirms that NGINX is responding successfully.
97-
- Server: nginx/1.24.0: Shows that the server is powered by NGINX.
98-
- Content-Type, Content-Length, Last-Modified, ETag: Provide details about the served file and its metadata.
95+
**Output summary**
96+
97+
| Field | What it tells you | Example |
98+
|------------------|------------------------------------------------------|------------------------------|
99+
| `HTTP/1.1 200 OK`| NGINX responded successfully | `HTTP/1.1 200 OK` |
100+
| Server | NGINX and version returned by the server | `nginx/1.24.0 (Ubuntu)` |
101+
| Content-Type | MIME type of the response | `text/html` |
102+
| Content-Length | Size of the response body in bytes | `615` |
103+
| Last-Modified| Timestamp of the file served | `Mon, 08 Sep 2025 04:26:39 GMT` |
104+
| ETag | Identifier for the specific version of the resource | `68be5aff-267` |
105+
99106

100107
This confirms that NGINX is functional at the system level, even before exposing it to external traffic.
101108

0 commit comments

Comments
 (0)