We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ff03ca commit 04485d0Copy full SHA for 04485d0
examples/nginx/nginx-conf.yaml
@@ -1,25 +1,15 @@
1
apiVersion: v1
2
+kind: ConfigMap
3
+metadata:
4
+ name: nginx
5
+ namespace:
6
data:
7
nginx.conf: |
8
server {
9
listen 80;
10
server_name www.noverit.com;
-
- charset koi8-r;
- access_log /var/log/nginx/host.access.log main;
11
location / {
12
root /usr/share/nginx/html;
13
index index.html index.htm;
14
}
15
16
- error_page 404 /404.html;
17
- error_page 500 502 503 504 /50x.html;
18
- location = /50x.html {
19
- root /usr/share/nginx/html;
20
- }
21
22
-kind: ConfigMap
23
-metadata:
24
- name: nginxconfig
25
- namespace:
0 commit comments