public: update article
This commit is contained in:
@@ -4,6 +4,7 @@ description: Learn essential steps to secure your Ubuntu server, including user
|
||||
tag: Hosting
|
||||
team: OpenPanel Team
|
||||
date: 2024-11-14
|
||||
updated: 2026-02-12
|
||||
cover: /content/secure-server.jpg
|
||||
---
|
||||
|
||||
|
||||
@@ -69,6 +69,18 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
|
||||
changeFrequency: 'monthly',
|
||||
priority: 0.3,
|
||||
},
|
||||
{
|
||||
url: url('/tools/ip-lookup'),
|
||||
lastModified: new Date(),
|
||||
changeFrequency: 'monthly',
|
||||
priority: 0.5,
|
||||
},
|
||||
{
|
||||
url: url('/tools/url-checker'),
|
||||
lastModified: new Date(),
|
||||
changeFrequency: 'monthly',
|
||||
priority: 0.5,
|
||||
},
|
||||
...articles.map((item) => ({
|
||||
url: url(item.url),
|
||||
lastModified: item.data.date,
|
||||
@@ -77,7 +89,7 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
|
||||
})),
|
||||
...guides.map((item) => ({
|
||||
url: url(item.url),
|
||||
lastModified: item.data.date,
|
||||
lastModified: item.data.updated ?? item.data.date,
|
||||
changeFrequency: 'monthly' as const,
|
||||
priority: 0.5,
|
||||
})),
|
||||
|
||||
Reference in New Issue
Block a user