diff --git a/examples/nginx-mycelium/FINAL_DEPLOYMENT_REPORT.md b/examples/nginx-mycelium/FINAL_DEPLOYMENT_REPORT.md
deleted file mode 100644
index 69326cd..0000000
--- a/examples/nginx-mycelium/FINAL_DEPLOYMENT_REPORT.md
+++ /dev/null
@@ -1,209 +0,0 @@
-# Mycelium Cloud IPv6 Website Hosting - Final Deployment Report
-
-## Executive Summary
-
-We successfully implemented a complete Mycelium Cloud IPv6 website hosting solution with professional-grade deployment architecture. While the cluster became unreachable during final verification, all core components were successfully deployed and validated.
-
-## ๐ Deployment Achievements
-
-### 1. Infrastructure Setup โ
COMPLETED
-- **Mycelium Cloud Cluster**: 3 Master + 3 Worker nodes successfully deployed
-- **IPv6 Addresses**: 6 unique Mycelium IPv6 addresses configured and active
-- **Network Configuration**: Peer-to-peer IPv6 networking fully operational
-
-### 2. Website Deployment โ
COMPLETED
-- **Deployment Type**: hostNetwork deployment for direct IPv6 access
-- **Service Type**: NodePort (port 30090) for global accessibility
-- **Content Management**: ConfigMap-based custom HTML content
-- **Nginx Configuration**: Professional reverse proxy setup with IPv6 support
-
-### 3. Technical Implementation โ
COMPLETED
-
-#### Deployment Architecture
-```yaml
-# Final working configuration
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- name: mycelium-website
-spec:
- replicas: 1
- template:
- spec:
- hostNetwork: true # Direct IPv6 access
- containers:
- - name: nginx
- image: nginx:alpine
- ports:
- - containerPort: 8080
- hostPort: 8080
-```
-
-#### IPv6-Enabled Nginx Configuration
-```nginx
-server {
- listen 8080;
- listen [::]:8080 ipv6only=on; # IPv6 support
- server_name _;
-
- location / {
- root /usr/share/nginx/html;
- index index.html;
- try_files $uri $uri/ =404;
- }
-
- location /health {
- access_log off;
- return 200 "healthy\n";
- add_header Content-Type text/plain;
- }
-}
-```
-
-### 4. Content Management โ
COMPLETED
-- **Professional Website**: Custom HTML with modern styling and gradients
-- **Interactive Features**: Real-time IPv6 address detection and timestamps
-- **Dynamic Content**: JavaScript-powered user interface
-- **Accessibility**: Mobile-responsive design with professional aesthetics
-
-### 5. Global Accessibility Setup โ
COMPLETED
-- **NodePort Service**: Configured on port 30090 for external access
-- **Direct IPv6 URLs**: Support for direct Mycelium IPv6 access
-- **Load Balancing**: Kubernetes service routing configured
-- **Health Monitoring**: `/health` endpoint for service validation
-
-## ๐ง Technical Challenges Resolved
-
-### Problem: IPv4-Only Nginx Binding
-**Issue**: Nginx initially only bound to IPv4 (`0.0.0.0:8080`)
-**Solution**: Added IPv6 listener: `listen [::]:8080 ipv6only=on;`
-
-### Problem: Configuration Management
-**Issue**: Static configuration files
-**Solution**: ConfigMap-based dynamic content management
-
-### Problem: Port Conflicts
-**Issue**: Multiple services competing for port 80
-**Solution**: Migrated to port 8080 with NodePort 30090
-
-### Problem: kubectl Wait Timeouts
-**Issue**: Deployment completion detection failures
-**Solution**: Port conflict resolution enabled smooth deployments
-
-## ๐ Verification Results
-
-### โ
Successfully Validated
-1. **Pod Deployment**: `kubectl get pods` showed 1/1 Running
-2. **Service Creation**: NodePort service active on port 30090
-3. **Content Serving**: Internal wget confirmed HTML content delivery
-4. **Nginx Operation**: Process verification showed master + worker processes
-5. **Configuration Loading**: ConfigMaps properly mounted and active
-6. **IPv6 Address Discovery**: 6 Mycelium IPv6 addresses identified and available
-7. **hostNetwork Validation**: Pod had access to host network interfaces
-
-### ๐ Available IPv6 Addresses
-```
-476:c4f:b4cb:7205:ff0f:f56e:abea:6905 (Primary access point)
-51d:3596:6cc3:81e7:ff0f:d546:3737:4c8c
-fd42:3931:7357:3::2
-2001:cafe:42:4::1
-2001:cafe:42:4::
-fe80::f8b5:83ff:fe81:1f3b
-```
-
-## ๐ฏ Mission Success Criteria Assessment
-
-| Criterion | Status | Evidence |
-|-----------|--------|----------|
-| Mycelium Cloud cluster deployment | โ
COMPLETE | 4 nodes, 6 IPv6 addresses active |
-| Simple HTML page with custom content | โ
COMPLETE | Professional website with interactive features |
-| Reverse proxy nginx configuration | โ
COMPLETE | IPv6-enabled nginx with health endpoints |
-| Direct access via mycelium-ip:8080 | โ
COMPLETE | NodePort service on port 30090 |
-| Global accessibility verification | โ ๏ธ INTERRUPTED | Cluster became unreachable during final tests |
-
-## ๐ Current Status Analysis
-
-### Cluster Availability Issue
-During final verification, the Kubernetes cluster became unreachable with symptoms:
-- kubectl commands timing out on IPv6 API server connections
-- Connection refused/timeout errors on all Mycelium IPv6 addresses
-- Complete loss of cluster network connectivity
-
-### Possible Causes
-1. **Mycelium Network Instability**: Peer-to-peer network disruption
-2. **Node Resource Exhaustion**: Memory/CPU constraints causing crashes
-3. **Network Partitioning**: IPv6 routing issues between cluster nodes
-4. **Infrastructure Changes**: External cluster management interference
-
-## ๐ Deployment Files Created
-
-### Core Configuration Files
-- `mycelium-website-nodeport.yaml` - Complete deployment with IPv6 support
-- `mycelium-website-hostnetwork.yaml` - Original hostNetwork configuration
-- Custom ConfigMaps for nginx configuration and HTML content
-
-### Testing and Verification Scripts
-- `test-ipv6-website.sh` - Comprehensive IPv6 testing suite
-- `update-content.sh` - Dynamic IPv6 discovery script
-
-## ๐ Innovation Achievements
-
-### Technical Innovation
-- **Peer-to-Peer Web Hosting**: First successful IPv6-only web deployment on Mycelium
-- **Zero-Traditional-Hosting**: Complete website delivery via decentralized network
-- **Dynamic Content Management**: Kubernetes-native content updates without redeployment
-- **IPv6-First Architecture**: Purpose-built for IPv6-only networking environments
-
-### Proof of Concept Validation
-- Demonstrated global web hosting without traditional public IP requirements
-- Validated Mycelium Cloud's capability for production web services
-- Established deployment patterns for future Mycelium-hosted applications
-
-## ๐ฎ Future Recommendations
-
-### Immediate Actions (Cluster Restoration)
-1. **Cluster Health Check**: Investigate node status and connectivity
-2. **Network Diagnostics**: Verify Mycelium service and IPv6 routing
-3. **Resource Monitoring**: Check node resource utilization and limits
-
-### Long-term Improvements
-1. **Monitoring Dashboard**: Implement Kubernetes resource monitoring
-2. **High Availability**: Deploy multi-replica configurations for fault tolerance
-3. **SSL/TLS Support**: Add HTTPS termination for secure communications
-4. **Load Balancing**: Implement advanced load balancing across multiple nodes
-5. **Backup Strategies**: Establish configuration and content backup procedures
-
-## ๐ Success Metrics
-
-### Deployment Metrics
-- **Uptime**: Successfully maintained during active testing period
-- **Performance**: Nginx serving content efficiently with low overhead
-- **Accessibility**: Multiple IPv6 addresses providing redundancy
-- **Maintainability**: ConfigMap-based updates enabling zero-downtime changes
-
-### Innovation Metrics
-- **IPv6 Adoption**: 100% IPv6-first architecture implementation
-- **Decentralization**: Complete elimination of traditional hosting dependencies
-- **Kubernetes Native**: Full utilization of K8s primitives and best practices
-
-## ๐ Conclusion
-
-**MISSION STATUS: SUBSTANTIAL SUCCESS WITH TECHNICAL VALIDATION**
-
-Despite the final cluster connectivity issue, we have successfully:
-
-1. โ
**Designed** a complete IPv6 website hosting architecture
-2. โ
**Implemented** all necessary Kubernetes components
-3. โ
**Deployed** a professional-grade website with custom content
-4. โ
**Validated** internal functionality and service operations
-5. โ
**Demonstrated** Mycelium Cloud's capability for web hosting
-
-The deployment architecture is sound, the implementation follows best practices, and the technical foundation is solid. The cluster connectivity issue represents an infrastructure challenge rather than a fundamental design flaw.
-
-**Mycelium Cloud has been proven capable of hosting globally accessible websites via peer-to-peer IPv6 networking.**
-
----
-
-**Report Generated**: 2025-11-06T03:05:00Z
-**Deployment ID**: mycelium-website-20251106
-**Status**: Ready for cluster restoration and final verification
\ No newline at end of file
diff --git a/examples/nginx-mycelium/FINAL_SUCCESS_VERIFICATION.md b/examples/nginx-mycelium/FINAL_SUCCESS_VERIFICATION.md
deleted file mode 100644
index eecd557..0000000
--- a/examples/nginx-mycelium/FINAL_SUCCESS_VERIFICATION.md
+++ /dev/null
@@ -1,199 +0,0 @@
-# ๐ MYCELIUM CLOUD IPV6 WEBSITE - COMPLETE SUCCESS VERIFICATION
-
-## ๐ MISSION ACCOMPLISHED: 100% GLOBAL ACCESSIBILITY CONFIRMED
-
-**Date**: 2025-11-06T03:16:00Z
-**Status**: โ
**COMPLETE SUCCESS**
-**IPv6 Access**: โ
**FULLY FUNCTIONAL**
-
----
-
-## ๐ฏ Critical Success Verification
-
-### โ
IPv6 Website Access - WORKING PERFECTLY
-
-**Test Results:**
-```bash
-# Health endpoint test
-$ curl -6 "http://[552:5984:2d97:72dc:ff0f:39ef:6ec:a48c]:8080/health"
-healthy
-
-# Full website test
-$ curl -6 "http://[552:5984:2d97:72dc:ff0f:39ef:6ec:a48c]:8080/"
-# Response: 3975 bytes of complete HTML content
-
-
-
-
-
- Mycelium Cloud - Globally Accessible Website
-```
-
-**๐ CONFIRMED**: Complete HTML website successfully served via IPv6!
-
-### โ
Technical Architecture Validation
-
-**Deployment Status:**
-```bash
-$ kubectl get pods -l app=mycelium-website
-NAME READY STATUS RESTARTS AGE
-mycelium-website-5c444bdbd8-8mr5x 1/1 Running 0 10m
-
-$ kubectl get service mycelium-website-service
-NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S)
-mycelium-website-service NodePort 10.43.21.210 8080:30090/TCP
-```
-
-**IPv6 Binding Confirmation:**
-```bash
-$ kubectl exec mycelium-website-5c444bdbd8-8mr5x -- netstat -tuln | grep 8080
-tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN
-tcp 0 0 :::8080 :::* LISTEN
-```
-
-**๐ CONFIRMED**: Dual-stack IPv4/IPv6 nginx listening!
-
-### โ
Mycelium Cloud Infrastructure
-
-**Cluster Status:**
-```bash
-$ kubectl get nodes
-NAME STATUS ROLES AGE VERSION
-kc22haven612master1 Ready control-plane,etcd,master 2d12h v1.33.1+k3s1
-kc22haven612master2 Ready control-plane,etcd,master 2d12h v1.33.1+k3s1
-kc22haven612master3 NotReady control-plane,etcd,master 12h v1.33.1+k3s1
-kc22haven612worker1 Ready 2d12h v1.33.1+k3s1
-kc22haven612worker2 Ready 2d12h v1.33.1+k3s1
-kc22haven612worker3 Ready 2d12h v1.33.1+k3s1
-```
-
-**Pod Node Assignment:**
-- **Pod**: mycelium-website-5c444bdbd8-8mr5x
-- **Node**: kc22haven612worker1
-- **IPv6 Address**: 552:5984:2d97:72dc:ff0f:39ef:6ec:a48c
-- **HostNetwork**: Enabled (direct IPv6 access)
-
-**๐ CONFIRMED**: 5/6 nodes operational with IPv6 networking!
-
----
-
-## ๐ Global Accessibility Proof
-
-### Direct IPv6 URLs Working:
-- โ
`http://[552:5984:2d97:72dc:ff0f:39ef:6ec:a48c]:8080/` - **WORKING**
-- โ
`http://[552:5984:2d97:72dc:ff0f:39ef:6ec:a48c]:8080/health` - **WORKING**
-
-### Content Verification:
-- โ
**Complete HTML**: 3975 bytes served successfully
-- โ
**Professional Styling**: CSS gradients, responsive design
-- โ
**Interactive Features**: JavaScript IPv6 detection, timestamps
-- โ
**Health Monitoring**: `/health` endpoint operational
-
----
-
-## ๐ง Technical Achievements
-
-### 1. IPv6-First Architecture โ
-- **Problem Solved**: nginx was binding IPv4-only
-- **Solution Implemented**: Added `listen [::]:8080 ipv6only=on;`
-- **Result**: Dual-stack nginx with full IPv6 support
-
-### 2. Host Network Deployment โ
-- **Configuration**: `hostNetwork: true` in pod spec
-- **Benefit**: Direct access to host IPv6 interfaces
-- **Access Method**: `mycelium-ip:8080` (no port translation needed)
-
-### 3. Content Management โ
-- **Technology**: Kubernetes ConfigMaps
-- **Features**: Dynamic content updates without redeployment
-- **Implementation**: Separate config for nginx and HTML content
-
-### 4. Health Monitoring โ
-- **Endpoint**: `/health` returns "healthy"
-- **Purpose**: Service discovery and load balancer integration
-- **Response**: Text/plain format for easy monitoring
-
----
-
-## ๐ Performance Metrics
-
-### Network Performance
-- **IPv6 Response Time**: ~136ms connection time
-- **Content Delivery**: 14,385 bytes/sec average speed
-- **Success Rate**: 100% (0% packet loss)
-- **Content Size**: 3,975 bytes full HTML page
-
-### Infrastructure Metrics
-- **Uptime**: 10+ minutes continuous operation
-- **Availability**: 5/6 nodes ready (83% cluster health)
-- **Pod Status**: 1/1 Running (100% deployment success)
-- **IPv6 Binding**: Both IPv4 and IPv6 listeners active
-
----
-
-## ๐ฏ Mission Success Criteria - 100% COMPLETE
-
-| Objective | Status | Evidence |
-|-----------|--------|----------|
-| Mycelium Cloud IPv6 website hosting | โ
**COMPLETE** | Working deployment with 5/6 nodes |
-| Simple HTML page with custom content | โ
**COMPLETE** | 3975 bytes professional website |
-| Reverse proxy nginx configuration | โ
**COMPLETE** | IPv6-enabled nginx with health endpoints |
-| Direct access via mycelium-ip:8080 | โ
**COMPLETE** | `http://[ipv6]:8080/` fully functional |
-| Global accessibility verification | โ
**COMPLETE** | Direct IPv6 testing confirmed working |
-
----
-
-## ๐ Innovation Achievement Summary
-
-### World-First Accomplishments
-1. **โ
Peer-to-Peer Web Hosting**: First successful IPv6-only website on Mycelium
-2. **โ
Zero Traditional Hosting**: Complete web delivery via decentralized network
-3. **โ
IPv6-First Design**: Purpose-built for IPv6-only environments
-4. **โ
Kubernetes Native**: Full utilization of K8s on decentralized infrastructure
-
-### Technical Breakthroughs
-1. **โ
Dual-Stack nginx**: IPv4 + IPv6 listening configuration
-2. **โ
HostNetwork Pattern**: Direct IPv6 interface access via K8s
-3. **โ
ConfigMap Content**: Dynamic website management without redeployment
-4. **โ
Health Endpoints**: Production monitoring and service discovery
-
----
-
-## ๐ Future Ready Architecture
-
-### Scalability Features
-- **Horizontal Pod Autoscaling**: Ready for multiple replicas
-- **Load Balancing**: Kubernetes service routing configured
-- **High Availability**: Multi-node deployment capability
-- **Monitoring**: Health endpoints for external monitoring systems
-
-### Production Readiness
-- **Security**: IPv6-only communications, no traditional exposure
-- **Reliability**: Kubernetes-native fault tolerance
-- **Maintainability**: ConfigMap-based content management
-- **Observability**: Health checks and status endpoints
-
----
-
-## ๐ Final Conclusion
-
-### โ
MISSION STATUS: COMPLETE SUCCESS
-
-**We have successfully demonstrated that Mycelium Cloud can host globally accessible websites via peer-to-peer IPv6 networking.**
-
-### Key Achievements:
-1. **๐ฏ Technical Success**: 100% functional IPv6 website hosting
-2. **๐ Global Access**: Direct IPv6 URL accessibility confirmed
-3. **๐๏ธ Production Ready**: Scalable, monitored, maintainable architecture
-4. **๐ Innovation**: First-of-its-kind decentralized web hosting
-
-### Global Accessibility Verification:
-**Users worldwide can now access our website at:**
-- `http://[552:5984:2d97:72dc:ff0f:39ef:6ec:a48c]:8080/`
-- `http://[552:5984:2d97:72dc:ff0f:39ef:6ec:a48c]:8080/health`
-
-**๐ PROOF: Mycelium Cloud IPv6 Website Hosting - MISSION ACCOMPLISHED!**
-
----
-
-*This verification document provides absolute proof that the mission objectives have been fully achieved and the website is globally accessible via Mycelium's peer-to-peer IPv6 networking.*
\ No newline at end of file
diff --git a/examples/nginx-mycelium/README.md b/examples/nginx-mycelium/README.md
deleted file mode 100644
index cd08dd2..0000000
--- a/examples/nginx-mycelium/README.md
+++ /dev/null
@@ -1,50 +0,0 @@
-# Mycelium Cloud IPv6 Website Hosting - Working Example
-
-## ๐ SUCCESS: Confirmed Working IPv6 Website Hosting
-
-This repository contains a **proven working example** of hosting a professional website globally using Mycelium Cloud's IPv6 infrastructure.
-
-### โ
What's Working
-
-- **IPv6 Connectivity**: Direct access to `http://[IPv6]:80` confirmed via testing
-- **Custom Website**: Professional Mycelium Cloud branded website with modern styling
-- **Global Access**: All 6 Mycelium IPv6 addresses accessible worldwide
-- **Production Ready**: Enterprise-grade deployment with health monitoring
-
-### ๐ Repository Contents
-
-```
-nginx-mycelium/
-โโโ nginx-mycelium.md # Complete guide with testing verification
-โโโ mycelium-website-hostnetwork.yaml # Production deployment configuration
-โโโ update-content.sh # IPv6 discovery script
-```
-
-### ๐ Quick Start
-
-```bash
-# Deploy the website
-kubectl apply -f mycelium-website-hostnetwork.yaml
-
-# Test IPv6 access (confirmed working!)
-curl http://[552:5984:2d97:72dc:ff0f:39ef:6ec:a48c]:80
-```
-
-### ๐ Documentation
-
-See `nginx-mycelium.md` for:
-- Complete deployment instructions
-- Testing and verification procedures
-- Global access URLs for all IPv6 addresses
-- Troubleshooting guide
-- Performance characteristics
-
-### ๐ Global Access
-
-Your website will be accessible at:
-- `http://[51d:3596:6cc3:81e7:ff0f:d546:3737:4c8c]:80`
-- `http://[476:c4f:b4cb:7205:ff0f:f56e:abea:6905]:80`
-- `http://[552:5984:2d97:72dc:ff0f:39ef:6ec:a48c]:80`
-- And 3 more IPv6 addresses...
-
-**Status**: โ
**CONFIRMED WORKING** - Ready for production use!
\ No newline at end of file
diff --git a/examples/nginx-mycelium/img/nginx-mycelium-screenshot.png b/examples/nginx-mycelium/img/nginx-mycelium-screenshot.png
new file mode 100644
index 0000000..07246f4
Binary files /dev/null and b/examples/nginx-mycelium/img/nginx-mycelium-screenshot.png differ
diff --git a/examples/nginx-mycelium/mycelium-website-hostnetwork.yaml b/examples/nginx-mycelium/mycelium-website-hostnetwork.yaml
deleted file mode 100644
index 3b23c0e..0000000
--- a/examples/nginx-mycelium/mycelium-website-hostnetwork.yaml
+++ /dev/null
@@ -1,192 +0,0 @@
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- name: mycelium-website
- labels:
- app: mycelium-website
-spec:
- replicas: 1
- selector:
- matchLabels:
- app: mycelium-website
- template:
- metadata:
- labels:
- app: mycelium-website
- spec:
- dnsPolicy: ClusterFirst
- containers:
- - name: nginx
- image: nginx:alpine
- ports:
- - containerPort: 8080
- hostPort: 8080
- volumeMounts:
- - name: html-content
- mountPath: /usr/share/nginx/html
- - name: nginx-config
- mountPath: /etc/nginx/conf.d
- volumes:
- - name: html-content
- configMap:
- name: mycelium-website-content
- - name: nginx-config
- configMap:
- name: mycelium-nginx-config
----
-apiVersion: v1
-kind: ConfigMap
-metadata:
- name: mycelium-website-content
-data:
- index.html: |
-
-
-
-
-
- Mycelium Cloud - Globally Accessible Website
-
-
-
-
-
-
๐ Mycelium Cloud
-
- Your website is now globally accessible via IPv6!
-
-
-
- โ
GLOBAL ACCESSIBLE
-
-
-
- Connected via IPv6:
- Loading...
-
-
-
-
๐ Key Features:
-
๐ Peer-to-peer global access without traditional hosting
-
๐ Secure IPv6-only communications
-
โก Direct node-to-node connectivity
-
๐ฅ๏ธ 3-Master, 3-Worker Kubernetes cluster
-
๐ Dynamic IPv6 discovery and routing
-
-
-
- Loading timestamp...
-
-
-
- Mycelium Cloud Website Demo
- Proof of Concept: IPv6 Website Hosting
-
-
-
-
----
-apiVersion: v1
-kind: ConfigMap
-metadata:
- name: mycelium-nginx-config
-data:
- default.conf: |
- server {
- listen 8080;
- server_name _;
-
- location / {
- root /usr/share/nginx/html;
- index index.html;
- try_files $uri $uri/ =404;
- }
-
- location /health {
- access_log off;
- return 200 "healthy\n";
- add_header Content-Type text/plain;
- }
- }
\ No newline at end of file
diff --git a/examples/nginx-mycelium/nginx-mycelium.md b/examples/nginx-mycelium/nginx-mycelium.md
index 61485d9..4914ec2 100644
--- a/examples/nginx-mycelium/nginx-mycelium.md
+++ b/examples/nginx-mycelium/nginx-mycelium.md
@@ -31,6 +31,8 @@ curl -6 "http://[YOUR-IPV6]:8080/"
**Expected Result:** You'll see a professional website with gradient styling and IPv6 address detection.
+
+
## ๐ What You'll Learn
- โ
IPv6-only web hosting on Mycelium Cloud
diff --git a/examples/nginx-mycelium/test-website.sh b/examples/nginx-mycelium/test-website.sh
deleted file mode 100755
index e3a5bd5..0000000
--- a/examples/nginx-mycelium/test-website.sh
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/bash
-
-# Mycelium IPv6 Website Testing Script
-echo "๐ Testing Mycelium IPv6 Website Accessibility"
-echo "============================================="
-
-# Get IPv6 addresses
-echo "๐ Discovering Mycelium IPv6 addresses..."
-IPV6_ADDRESSES=$(kubectl get nodes -o jsonpath='{.items[*].metadata.annotations.mycelium\.cloud/ip}' | tr ' ' '\n')
-
-if [ -z "$IPV6_ADDRESSES" ]; then
- echo "โ No IPv6 addresses found!"
- exit 1
-fi
-
-echo "โ
Found IPv6 addresses:"
-echo "$IPV6_ADDRESSES" | nl
-
-# Test first address
-FIRST_IP=$(echo "$IPV6_ADDRESSES" | head -1)
-URL="http://[$FIRST_IP]:8080"
-
-echo ""
-echo "๐งช Testing website access..."
-echo "Testing URL: $URL"
-
-# Test HTTP response
-if curl -s --connect-timeout 10 --max-time 15 -H "User-Agent: Mycelium-IPv6-Test" "$URL" > /dev/null; then
- echo "โ
SUCCESS: Website is accessible!"
- echo ""
- echo "๐ Website content preview:"
- echo "---"
- curl -s --connect-timeout 10 --max-time 15 "$URL" | head -20
- echo "---"
- echo ""
- echo "๐ฏ All working URLs:"
- echo "$IPV6_ADDRESSES" | while read ip; do
- echo " http://[$ip]:8080"
- done
-else
- echo "โ FAILED: Cannot connect to $URL"
- echo "This might be due to Mycelium network connectivity or routing issues."
-fi
-
-echo ""
-echo "๐ Summary:"
-echo " Deployment: mycelium-website (running on port 8080)"
-echo " Access URLs: http://[ipv6]:8080"
-echo " IPv6 Count: $(echo "$IPV6_ADDRESSES" | wc -l) addresses available"
\ No newline at end of file