Skip to content

Commit 92a86e0

Browse files
authored
Create nginx-custom.conf
1 parent ec38f3c commit 92a86e0

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

examples/nginx/nginx-custom.conf

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
apiVersion: v1
2+
kind: ConfigMap
3+
metadata:
4+
name: nginx
5+
namespace:
6+
data:
7+
custom.conf: |
8+
server {
9+
listen 8080;
10+
server_name www.noverit.com;
11+
location / {
12+
root /usr/share/nginx/html;
13+
index index.html index.htm;
14+
}
15+
}

0 commit comments

Comments
 (0)