X-Robots-Tag "noindex, nofollow"

This commit is contained in:
Zsolt Ero
2025-02-27 16:52:31 +01:00
parent d76a877f1f
commit 6687311f9a
10 changed files with 34 additions and 10 deletions

View File

@@ -29,7 +29,6 @@ lint.ignore = [
'E741',
'F401', # unused imports
'F841',
'PT004',
'SIM102',
'SIM105',
'SIM108',

View File

@@ -206,6 +206,7 @@ def create_version_location(
add_header 'Access-Control-Allow-Origin' '*' always;
add_header Cache-Control public;
add_header X-Robots-Tag "noindex, nofollow" always;
add_header x-ofm-debug 'specific JSON {area} {version}';
}}
@@ -224,6 +225,7 @@ def create_version_location(
add_header 'Access-Control-Allow-Origin' '*' always;
add_header Cache-Control public;
add_header X-Robots-Tag "noindex, nofollow" always;
add_header x-ofm-debug 'specific PBF {area} {version}';
}}
@@ -268,6 +270,7 @@ def create_latest_locations(*, local: str, domain: str) -> str:
add_header 'Access-Control-Allow-Origin' '*' always;
add_header Cache-Control public;
add_header X-Robots-Tag "noindex, nofollow" always;
add_header x-ofm-debug 'latest JSON {area}';
}}
@@ -289,6 +292,7 @@ def create_latest_locations(*, local: str, domain: str) -> str:
add_header 'Access-Control-Allow-Origin' '*' always;
add_header Cache-Control public;
add_header X-Robots-Tag "noindex, nofollow" always;
add_header x-ofm-debug 'wildcard JSON {area}';
}}
@@ -309,6 +313,7 @@ def create_latest_locations(*, local: str, domain: str) -> str:
add_header 'Access-Control-Allow-Origin' '*' always;
add_header Cache-Control public;
add_header X-Robots-Tag "noindex, nofollow" always;
add_header x-ofm-debug 'wildcard PBF {area}';
}}

View File

@@ -22,12 +22,16 @@ server {
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-CHACHA20-POLY1305;
ssl_prefer_server_ciphers off;
# access log doesn't contain IP address
access_log off;
#access_log /data/ofm/http_host/logs_nginx/le-access.jsonl access_json buffer=128k;
error_log /data/ofm/http_host/logs_nginx/le-error.log;
add_header X-Robots-Tag "noindex, nofollow" always;
location ^~ /.well-known/acme-challenge/ {
# trailing slash
root /data/nginx/acme-challenges;
@@ -52,6 +56,7 @@ server {
add_header 'Access-Control-Allow-Origin' '*' always;
add_header Cache-Control public;
add_header X-Robots-Tag "noindex, nofollow" always;
}
# catch-all block to deny all other requests

View File

@@ -1,3 +1,9 @@
# Serve robots.txt that blocks all crawlers
#location = /robots.txt {
# add_header Content-Type text/plain;
#return 200 "User-agent: *\nDisallow: /\n";
#}
location /fonts/ {
# trailing slash
@@ -8,6 +14,8 @@ location /fonts/ {
add_header 'Access-Control-Allow-Origin' '*' always;
add_header Cache-Control public;
add_header X-Robots-Tag "noindex, nofollow" always;
}
location /natural_earth/ {
@@ -20,6 +28,8 @@ location /natural_earth/ {
add_header 'Access-Control-Allow-Origin' '*' always;
add_header Cache-Control public;
add_header X-Robots-Tag "noindex, nofollow" always;
}
location /sprites/ {
@@ -32,6 +42,8 @@ location /sprites/ {
add_header 'Access-Control-Allow-Origin' '*' always;
add_header Cache-Control public;
add_header X-Robots-Tag "noindex, nofollow" always;
}
@@ -47,6 +59,7 @@ location @empty_tile {
add_header 'Access-Control-Allow-Origin' '*' always;
add_header Cache-Control public;
add_header X-Robots-Tag "noindex, nofollow" always;
add_header x-ofm-debug 'empty tile';
}

View File

@@ -28,6 +28,9 @@ server {
error_log /data/ofm/http_host/logs_nginx/roundrobin-error.log;
add_header X-Robots-Tag "noindex, nofollow" always;
__LOCATION_BLOCKS__
location /styles/ {
@@ -46,6 +49,8 @@ server {
add_header 'Access-Control-Allow-Origin' '*' always;
add_header Cache-Control public;
add_header X-Robots-Tag "noindex, nofollow" always;
}
# catch-all block to deny all other requests

View File

@@ -69,7 +69,7 @@ def cli(btrfs_img: Path):
mnt_dir.rmdir()
subprocess.run(['truncate', '-s', str(total_size), btrfs_img])
print(f'Truncated {btrfs_img} to {total_size//1_000_000} MB size')
print(f'Truncated {btrfs_img} to {total_size // 1_000_000} MB size')
print('shrink_btrfs.py DONE')
@@ -86,7 +86,7 @@ def get_usage(mnt: Path, key: str):
def do_shrink(mnt: Path, delta_size: float):
delta_size = int(delta_size)
print(f'Trying to shrink by {delta_size//1_000_000} MB')
print(f'Trying to shrink by {delta_size // 1_000_000} MB')
p = subprocess.run(['btrfs', 'filesystem', 'resize', str(-delta_size), mnt])
return p.returncode == 0

View File

@@ -88,7 +88,7 @@ def make_btrfs(run_folder: Path):
['btrfs', 'filesystem', 'show', mount],
['btrfs', 'filesystem', 'usage', mount],
]:
f.write(f"\n\n{' '.join(cmd)}\n")
f.write(f'\n\n{" ".join(cmd)}\n')
result = subprocess.run(['sudo'] + cmd, check=True, capture_output=True, text=True)
f.write(result.stdout)

View File

@@ -1,7 +1,7 @@
// @ts-check
import { defineConfig } from 'astro/config'
import sitemap from '@astrojs/sitemap';
import sitemap from '@astrojs/sitemap'
// https://astro.build/config

View File

@@ -15,9 +15,6 @@
"lightningcss": "^1.29.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
"onlyBuiltDependencies": ["esbuild", "sharp"]
}
}

View File

@@ -1,7 +1,7 @@
---
const { frontmatter } = Astro.props || {}
const { title } = frontmatter || Astro.props
const canonicalURL = new URL(Astro.url.pathname, Astro.site);
const canonicalURL = new URL(Astro.url.pathname, Astro.site)
import '../styles/_style.css'
---