From ae911db777a9c93941f8c2edfcbe55ba69e0327c Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 1 Mar 2026 20:11:43 +0000 Subject: [PATCH] Created via MCP --- apps/nginx-mcp/configmap.yaml | 116 ++++++++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 apps/nginx-mcp/configmap.yaml diff --git a/apps/nginx-mcp/configmap.yaml b/apps/nginx-mcp/configmap.yaml new file mode 100644 index 0000000..3200c39 --- /dev/null +++ b/apps/nginx-mcp/configmap.yaml @@ -0,0 +1,116 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: nginx-mcp-html + namespace: nginx-mcp +data: + index.html: | + + + + + + Hello from MCP + + + +
+
🤖 MCP Powered
+

Hello from MCP

+

Deployed via AI-assisted GitOps pipeline

+
+
Your Internal IP Address
+
Detecting...
+
+ +
+ + + + nginx.conf: | + server { + listen 80; + server_name _; + root /usr/share/nginx/html; + index index.html; + location / { + try_files $uri $uri/ =404; + } + }