Skip to content

Commit 506075e

Browse files
committed
Merge branch 'main' into ngf-release-2.0
2 parents 905bb53 + e85ddd9 commit 506075e

File tree

90 files changed

+3228
-839
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+3228
-839
lines changed

.github/CODEOWNERS

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,31 @@
1515

1616
# DocOps Writers
1717
* @nginx/nginx-docs
18+
1819
# DocOps Engineers
1920
.github/* @nginx/docs-engineering
20-
# NGINX Plus
21-
content/nginx/* @nginx/plus-docs-approvers
21+
2222
# NGINX Agent
23-
content/nginx/nms/agent/* @nginx/agent-docs-approvers
24-
# NGINX One
25-
content/nginx-one/* @nginx/one-docs-approvers
26-
# NGINX Instance Manager
27-
content/nms/nim/* @nginx/nim-docs-approvers
28-
content/nim/* @nginx/nim-docs-approvers
23+
content/nginx/nms/agent/* @nginx/nginx-agent
24+
25+
# NGINX App Protect DoS
26+
content/nap-dos/* @nginx/dos-docs-approvers
27+
2928
# NGINX App Protect WAF
3029
content/nap-waf/* @nginx/nap-docs-approvers
3130
data/nap-waf/* @nginx/nap-docs-approvers
32-
# NGINX App Protect DoS
33-
content/nap-dos/* @nginx/dos-docs-approvers
31+
32+
# NGINX Gateway Fabric
33+
content/ngf/* @nginx/nginx-gateway-fabric
34+
content/includes/ngf/* @nginx/nginx-gateway-fabric
35+
36+
# NGINX Instance Manager
37+
content/nms/nim/* @nginx/nim-docs-approvers
38+
content/nim/* @nginx/nim-docs-approvers
39+
40+
# NGINX Plus
41+
content/nginx/* @nginx/plus-docs-approvers
42+
43+
# NGINX One
44+
content/nginx-one/* @nginx/one-docs-approvers
45+

.github/workflows/build-push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ on:
3434
- "*"
3535
push:
3636
branches:
37-
- "nim-release-2.18.0"
37+
- "main"
3838

3939
env:
4040
FRONT_DOOR_USERNAME: ${{ secrets.FRONT_DOOR_USERNAME }}
@@ -65,8 +65,8 @@ jobs:
6565
doc_type: "hugo"
6666
environment: ${{inputs.environment}}
6767
force_hugo_theme_version: ${{inputs.hugo_theme_override}}
68-
auto_deploy_branch: "nim-release-2.18.0"
69-
auto_deploy_env: "staging"
68+
auto_deploy_branch: "main"
69+
auto_deploy_env: "prod"
7070
secrets:
7171
AZURE_CREDENTIALS: ${{secrets.AZURE_CREDENTIALS_DOCS}}
7272
AZURE_KEY_VAULT: ${{secrets.AZURE_KEY_VAULT_DOCS}}

.github/workflows/daily-deploy.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/ossf_scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@ jobs:
5656

5757
# Upload the results to GitHub's code scanning dashboard.
5858
- name: Upload SARIF results to code scanning
59-
uses: github/codeql-action/upload-sarif@f6091c0113d1dcf9b98e269ee48e8a7e51b7bdd4 # v3.28.5
59+
uses: github/codeql-action/upload-sarif@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3.28.8
6060
with:
6161
sarif_file: results.sarif

CONTRIBUTING.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,15 @@ issue lifecycle:
8484
- The owner assigns one or more [labels](https://github.com/nginxinc/oss-docs/issues/labels) to the issue
8585
- The owner, in collaboration with the community member, determines what milestone to attach to an issue. They may be milestones correspond to product releases
8686

87-
## Content edited elsewhere
87+
## Additional NGINX documentation
8888

89-
This repository does not include all documentation available at https://docs.nginx.com. Other relevant repositories include:
89+
This repository does not include all of the source content for the NGINX documentation. Other relevant repositories include:
9090

91-
- [NGINX Open Source](https://github.com/nginx/nginx)
92-
- [NGINX Unit](https://github.com/nginx/unit)
93-
- [NGINX Ingress Controller](https://github.com/nginxinc/kubernetes-ingress/)
94-
- [NGINX Gateway Fabric](https://github.com/nginxinc/nginx-gateway-fabric)
91+
- [NGINX Open Source](https://github.com/nginx/nginx) - source for [NGINX changelog](https://nginx.org/en/CHANGES)
92+
- [nginx.org](https://github.com/nginx/nginx.org) - source for https://nginx.org
93+
- [NGINX Unit](https://github.com/nginx/unit) - source for https://unit.nginx.org
94+
- [NGINX Ingress Controller](https://github.com/nginxinc/kubernetes-ingress/) - source for https://docs.nginx.com/nginx-ingress-controller
95+
- [NGINX Agent](https://github.com/nginx/agent) - source for https://docs.nginx.com/nginx-agent
9596

9697
In those repositories, you can find documentation source code in the `docs` or `site` subdirectories.
9798

content/includes/nap-waf/config/v5/build-nginx-image-oss/build-alpine.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
```dockerfile
22
# syntax=docker/dockerfile:1
33

4-
# Supported OS_VER's are 3.16/3.17
5-
ARG OS_VER="3.17"
4+
# Supported OS_VER's are 3.16/3.17/3.19
5+
ARG OS_VER="3.19"
66

77
# Base image
88
FROM alpine:${OS_VER}

content/includes/nap-waf/config/v5/build-nginx-image-plus/build-alpine.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
```dockerfile
22
# syntax=docker/dockerfile:1
33

4-
# Supported OS_VER's are 3.16/3.17
5-
ARG OS_VER="3.17"
4+
# Supported OS_VER's are 3.16/3.17/3.19
5+
ARG OS_VER="3.19"
66

77
# Base image
88
FROM alpine:${OS_VER}

0 commit comments

Comments
 (0)