Skip to content

Commit 5b4f6e8

Browse files
authored
Merge branch 'main' into waf/docker-install-order
2 parents 8b15a8c + 63d120e commit 5b4f6e8

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/coveo.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
run: sudo apt-get install jq
2626

2727
- name: Generating token for ${{matrix.env_name}} ...
28+
id: generate-token
29+
continue-on-error: true
2830
env:
2931
COVEO_API_KEY: ${{secrets[matrix.env_api_key]}}
3032
COVEO_SEARCH_HUB: "HUB_ES_Nginx_Docs_And_Org"
@@ -61,6 +63,7 @@ jobs:
6163
echo "{\"token\": \"$SEARCH_TOKEN\", \"org_id\": \"${{matrix.env_coveo_org_id}}\"}" > coveo/search_token.json
6264
6365
- name: Upload token for ${{matrix.env_name}}
66+
if: ${{ steps.generate-token.outcome == 'success' }}
6467
uses: actions/upload-artifact@v4
6568
with:
6669
name: ${{matrix.env_name}}

content/nginxaas-azure/getting-started/nginx-configuration/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Some directives cannot be overridden by the user provided configuration.
6767
|------------------ | ----------------------- | -----------------|
6868
| `user` | `nginx` | The `nginx` user has the correct permissions for accessing certificates, policy files and other auxfiles. |
6969
| `worker_processes` | `auto` | Set to `auto` to automatically set `worker_processes` to the number of CPU cores. |
70-
| `worker_connections` | <ul><li>Standard V2 plan `4000`</li><li>basic plan `3000`</li></ul> | To ensure reasonable performance of the NGINXaaS deployment for Standard V2 plan, the `worker_connections` is fixed at 400/NCU; for basic plan this is set lower.<br><br> Changing the value in the config has no effect on the NGINX process in the deployment. |
70+
| `worker_connections` | <ul><li>Standard V2 plan `4000`</li><li>basic plan `20`</li></ul> | To ensure reasonable performance of the NGINXaaS deployment for Standard V2 plan, the `worker_connections` is fixed at 400/NCU; for basic plan this is set lower.<br><br> Changing the value in the config has no effect on the NGINX process in the deployment. |
7171
| `pid` | `/run/nginx/nginx.pid` | Set to this value to allow NGINXaaS to automatically manage the NGINX master process. |
7272
| `daemon` | `on` | Automatically set to `on` to allow NGINXaaS to manage the NGINX master process. |
7373
| `master_process` | `on` | This directive is intended for NGINX developers. |

0 commit comments

Comments
 (0)