2020-07-13 08:12:32 +02:00
|
|
|
{
|
|
|
|
admin off
|
|
|
|
}
|
|
|
|
|
2021-10-01 09:42:00 +02:00
|
|
|
{$SEARXNG_HOSTNAME} {
|
2020-07-13 08:12:32 +02:00
|
|
|
log {
|
|
|
|
output discard
|
|
|
|
}
|
|
|
|
|
2021-10-01 09:42:00 +02:00
|
|
|
tls {$SEARXNG_TLS}
|
2020-07-13 08:12:32 +02:00
|
|
|
|
|
|
|
@api {
|
|
|
|
path /config
|
2022-03-19 20:16:38 +01:00
|
|
|
path /healthz
|
|
|
|
path /stats/errors
|
|
|
|
path /stats/checker
|
2019-07-06 14:54:05 +02:00
|
|
|
}
|
2019-07-01 16:26:12 +02:00
|
|
|
|
2020-07-13 08:12:32 +02:00
|
|
|
@static {
|
|
|
|
path /static/*
|
2019-07-13 10:59:07 +02:00
|
|
|
}
|
2019-07-01 16:26:12 +02:00
|
|
|
|
2022-03-19 20:16:38 +01:00
|
|
|
@notstatic {
|
|
|
|
not path /static/*
|
|
|
|
}
|
|
|
|
|
2022-02-25 22:43:05 +01:00
|
|
|
@imageproxy {
|
|
|
|
path /image_proxy
|
2020-07-13 08:12:32 +02:00
|
|
|
}
|
|
|
|
|
2022-02-25 22:43:05 +01:00
|
|
|
@notimageproxy {
|
|
|
|
not path /image_proxy
|
2019-07-13 10:59:07 +02:00
|
|
|
}
|
|
|
|
|
2020-07-13 08:12:32 +02:00
|
|
|
header {
|
2019-07-13 10:59:07 +02:00
|
|
|
# Enable HTTP Strict Transport Security (HSTS) to force clients to always connect via HTTPS
|
|
|
|
Strict-Transport-Security "max-age=31536000; includeSubDomains; preload"
|
2019-07-01 16:26:12 +02:00
|
|
|
|
2019-07-13 10:59:07 +02:00
|
|
|
# Enable cross-site filter (XSS) and tell browser to block detected attacks
|
|
|
|
X-XSS-Protection "1; mode=block"
|
2019-07-01 16:26:12 +02:00
|
|
|
|
2019-07-13 10:59:07 +02:00
|
|
|
# Prevent some browsers from MIME-sniffing a response away from the declared Content-Type
|
|
|
|
X-Content-Type-Options "nosniff"
|
2019-07-01 16:26:12 +02:00
|
|
|
|
2019-07-13 10:59:07 +02:00
|
|
|
# Disable some features
|
2022-03-19 20:16:38 +01:00
|
|
|
Permissions-Policy "accelerometer=(),ambient-light-sensor=(),autoplay=(),camera=(),encrypted-media=(),focus-without-user-activation=(),geolocation=(),gyroscope=(),magnetometer=(),microphone=(),midi=(),payment=(),picture-in-picture=(),speaker=(),sync-xhr=(),usb=(),vr=()"
|
2021-05-26 16:00:29 +02:00
|
|
|
|
|
|
|
# Disable some features (legacy)
|
2019-08-06 12:44:08 +02:00
|
|
|
Feature-Policy "accelerometer 'none';ambient-light-sensor 'none'; autoplay 'none';camera 'none';encrypted-media 'none';focus-without-user-activation 'none'; geolocation 'none';gyroscope 'none';magnetometer 'none';microphone 'none';midi 'none';payment 'none';picture-in-picture 'none'; speaker 'none';sync-xhr 'none';usb 'none';vr 'none'"
|
2019-07-01 16:26:12 +02:00
|
|
|
|
2019-07-13 10:59:07 +02:00
|
|
|
# Referer
|
|
|
|
Referrer-Policy "no-referrer"
|
2019-07-01 16:26:12 +02:00
|
|
|
|
2019-07-13 10:59:07 +02:00
|
|
|
# X-Robots-Tag
|
|
|
|
X-Robots-Tag "noindex, noarchive, nofollow"
|
2019-07-06 14:54:05 +02:00
|
|
|
|
2019-07-13 10:59:07 +02:00
|
|
|
# Remove Server header
|
|
|
|
-Server
|
2019-07-01 16:26:12 +02:00
|
|
|
}
|
|
|
|
|
2020-07-13 08:12:32 +02:00
|
|
|
header @api {
|
|
|
|
Access-Control-Allow-Methods "GET, OPTIONS"
|
|
|
|
Access-Control-Allow-Origin "*"
|
2019-07-11 17:15:49 +02:00
|
|
|
}
|
|
|
|
|
2020-07-13 08:12:32 +02:00
|
|
|
# Cache
|
|
|
|
header @static {
|
|
|
|
# Cache
|
2022-02-25 22:43:05 +01:00
|
|
|
Cache-Control "public, max-age=31536000"
|
|
|
|
defer
|
2019-07-09 18:05:05 +02:00
|
|
|
}
|
|
|
|
|
2020-07-13 08:12:32 +02:00
|
|
|
header @notstatic {
|
|
|
|
# No Cache
|
|
|
|
Cache-Control "no-cache, no-store"
|
|
|
|
Pragma "no-cache"
|
2019-07-11 17:15:49 +02:00
|
|
|
}
|
2019-07-09 18:05:05 +02:00
|
|
|
|
2020-07-13 08:12:32 +02:00
|
|
|
# CSP (see http://content-security-policy.com/ )
|
2022-02-25 22:43:05 +01:00
|
|
|
header @imageproxy {
|
|
|
|
Content-Security-Policy "default-src 'none'; img-src 'self' data:"
|
2020-07-13 08:12:32 +02:00
|
|
|
}
|
2019-07-13 10:59:07 +02:00
|
|
|
|
2022-02-25 22:43:05 +01:00
|
|
|
header @notimageproxy {
|
2022-05-18 10:55:18 +02:00
|
|
|
Content-Security-Policy "upgrade-insecure-requests; default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; form-action 'self' https://github.com/searxng/searxng/issues/new; font-src 'self'; frame-ancestors 'self'; base-uri 'self'; connect-src 'self' https://overpass-api.de; img-src 'self' data: https://*.tile.openstreetmap.org; frame-src https://www.youtube-nocookie.com https://player.vimeo.com https://www.dailymotion.com https://www.deezer.com https://www.mixcloud.com https://w.soundcloud.com https://embed.spotify.com"
|
2019-07-01 16:26:12 +02:00
|
|
|
}
|
|
|
|
|
2022-03-19 20:16:38 +01:00
|
|
|
# SearXNG
|
2020-07-13 08:12:32 +02:00
|
|
|
handle {
|
|
|
|
encode zstd gzip
|
|
|
|
|
2022-02-25 22:43:05 +01:00
|
|
|
reverse_proxy localhost:8080 {
|
2020-07-13 08:12:32 +02:00
|
|
|
header_up X-Forwarded-Port {http.request.port}
|
|
|
|
header_up X-Forwarded-Proto {http.request.scheme}
|
|
|
|
}
|
|
|
|
}
|
2019-07-09 18:05:05 +02:00
|
|
|
|
2019-07-01 16:26:12 +02:00
|
|
|
}
|