<?xml version="1.0" encoding="UTF-8"?>
<!--
  SITEMAP INDEX — Production Setup
  =================================
  In production, configure your web server (Nginx/Apache) to proxy
  /sitemap*.xml requests to the Laravel backend so that dynamic
  product & blog URLs are always up-to-date.

  Nginx example:
    location ~ ^/sitemap.*\.xml$ {
        proxy_pass https://api.nexcam.in$request_uri;
    }

  Apache example (.htaccess):
    RewriteRule ^sitemap(.*)\.xml$ https://api.nexcam.in/sitemap$1.xml [P,L]

  This static file is a fallback with only the sitemap index pointers.
-->
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://api.nexcam.in/sitemap-static.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://api.nexcam.in/sitemap-products.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://api.nexcam.in/sitemap-blogs.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://api.nexcam.in/sitemap-categories.xml</loc>
  </sitemap>
</sitemapindex>
