From ab79720416853507c228b965fc5a69b448b218a9 Mon Sep 17 00:00:00 2001 From: Claude AI Date: Sun, 1 Mar 2026 21:12:10 +0000 Subject: [PATCH] feat: add nginx-mcp configmap --- apps/nginx-mcp/configmap.yaml | 126 ++++++++++++++++++++++++++++++++++ 1 file changed, 126 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..4e68249 --- /dev/null +++ b/apps/nginx-mcp/configmap.yaml @@ -0,0 +1,126 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: nginx-mcp-html + namespace: nginx-mcp +data: + index.html: | + + + + + + Hello from MCP - v1 Stable + + + +
+
🤖 MCP Powered

+
v1 stable
+

Hello from MCP

+

Deployed via AI-assisted GitOps pipeline

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