You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -950,7 +950,7 @@ Different backend applications may benefit from using different load balancing t
950
950
951
951

952
952
953
-
>But this points out a very important concept to be aware of: NGINX uses HTTP/1.0 to all upstreams by default. HTTP/1.0 is limited to a single TCP connection for a single HTTP object on the web page. If you have hundreds of web objects, you will need hundreds of TCP connections. This is a large waste of time and resources, so adding TCP Keepalives and HTTP/1.1 will make a significant improvement in performance in most cases.
953
+
>**But this points out a very important concept to be aware of: NGINX uses HTTP/1.0 to all upstreams by default.** HTTP/1.0 is limited to a single TCP connection for a single HTTP object on the web page. If you have hundreds of web objects, you will need hundreds of TCP connections. This is a large waste of time and resources, so adding TCP Keepalives and HTTP/1.1 will make a significant improvement in performance in most cases.
954
954
955
955
<br/>
956
956
@@ -989,7 +989,7 @@ Different backend applications may benefit from using different load balancing t
989
989
1. For a fun test, hit it again with `wrk`...what do you observe? Do admin weights help or hurt performance?
After the 1 minute run of `wrk` load generation tool has finished, you should see a Summary of the statistics. It should look similar to this:
@@ -1220,7 +1220,7 @@ With NGINX, there are several configuration options for this, but in this next l
1220
1220
1221
1221
1. If you need to find the `answers` to the lab exercises, you will find the final NGINX configuration files for all the exercises in the `labs/lab5/final` folder. Use them for reference to compare how you completed the labs.
1222
1222
1223
-
1. If you are finished with this lab move to the next lab. Please donot shut down your test environment as you would be using the same environment in lab6.
1223
+
1. If you are finished with this lab move to the next lab. Please do not shut down your test environment as you would be using the same environment in Lab6.
Copy file name to clipboardExpand all lines: labs/lab6/readme.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# NGINX Plus Logs, Logging and Troubleshooting
1
+
# NGINX Plus Logs, Health Checks and API
2
2
3
3
## Introduction
4
4
@@ -252,7 +252,7 @@ In this section, you will enable active Plus Healthchecks. Active healthchecks p
252
252
1. NGINX also records health check failures in the `/var/log/nginx/error.log` file which is symlinked to `/dev/stderr` within our docker setup. If you run below command you can see the error.log content.
253
253
254
254
```bash
255
-
docker log $NAME-nginx-plus
255
+
docker logs $NAME-nginx-plus
256
256
257
257
```
258
258
@@ -291,7 +291,7 @@ In this section, you will manage your backend servers dynamically using the NGIN
291
291
1. Start the `wrk` load generation tool by downloading and running the following docker container.
0 commit comments