# Ndryshoni sitemap.xml në Nginx për të përfshirë më shumë faqe
location = /sitemap.xml {
    add_header Content-Type "application/xml; charset=utf-8";
    return 200 '<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <url>
        <loc>https://shprehu.al/</loc>
        <lastmod>2026-02-24</lastmod>
        <changefreq>daily</changefreq>
        <priority>1.0</priority>
    </url>
</urlset>';
}