docs: add all untracked content

This commit is contained in:
2023-11-07 17:58:19 +00:00
parent ef4a3e69a1
commit 6ef085858e
15 changed files with 117 additions and 11 deletions

View File

@@ -0,0 +1,24 @@
```yaml
---
kind: ConfigMap
apiVersion: v1
metadata:
name: openresty-conf
data:
default.conf: |
server {
listen 80;
server_name localhost;
location / {
root /usr/local/openresty/nginx/html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/local/openresty/nginx/html;
}
}
```