saving uncommitted changes in /etc prior to dnf run

This commit is contained in:
2023-11-27 23:35:41 +02:00
parent e8ff7fce2f
commit 14b2ede753

View File

@@ -31,6 +31,16 @@ server {
return 301 https://898.ro/tags/$1; return 301 https://898.ro/tags/$1;
} }
# Redirect /tag/ URLs to /tags/
location ~ ^/tags/(.*) {
return 301 https://898.ro;
}
# Redirect /en/ URLs
location ~ ^/en/(.*) {
return 301 https://898.ro;
}
# Redirect /tag/ URLs to /tags/ # Redirect /tag/ URLs to /tags/
location ~ ^/tag/(.*) { location ~ ^/tag/(.*) {
return 301 https://898.ro/tags/$1; return 301 https://898.ro/tags/$1;