Switch search.bbaovanc.com to SearXNG

This commit is contained in:
BBaoVanC 2022-05-23 02:40:11 -05:00
parent 1588eabd22
commit 7efc3cce37

View File

@ -1,24 +1,29 @@
# vim: ft=caddyfile # vim: ft=caddyfile
search.bbaovanc.com { search.bbaovanc.com {
encode zstd gzip
import hsts import hsts
@api { @api {
path /config path /config
path /status path /healthz
path /stats/errors
path /stats/checker
} }
@static { @static {
path /static/* path /static/*
} }
@morty { @notstatic {
path /morty/* not path /static/*
} }
@notmorty { @imageproxy {
not path /morty/* path /image_proxy/*
}
@notimageproxy {
not path /image_proxy/*
} }
header { header {
@ -28,11 +33,8 @@ search.bbaovanc.com {
# Prevent some browsers from MIME-sniffing a response away from the declared Content-Type # Prevent some browsers from MIME-sniffing a response away from the declared Content-Type
X-Content-Type-Options "nosniff" X-Content-Type-Options "nosniff"
# Disallow the site to be rendered within a frame (clickjacking protection)
X-Frame-Options "SAMEORIGIN"
# Disable some features # Disable some features
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=()" 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=()"
# Disable some features (legacy) # Disable some features (legacy)
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'" 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'"
@ -42,6 +44,9 @@ search.bbaovanc.com {
# X-Robots-Tag # X-Robots-Tag
X-Robots-Tag "noindex, noarchive, nofollow" X-Robots-Tag "noindex, noarchive, nofollow"
# Remove Server header
#-Server
} }
header @api { header @api {
@ -49,27 +54,35 @@ search.bbaovanc.com {
Access-Control-Allow-Origin "*" Access-Control-Allow-Origin "*"
} }
# Cache
header @static { header @static {
# Cache
#Cache-Control "public, max-age=31536000" #Cache-Control "public, max-age=31536000"
Cache-Control no-cache Test working
defer defer
} }
header @notmorty { header @notstatic {
Content-Security-Policy "upgrade-insecure-requests; default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; form-action 'self'; 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" # No Cache
Cache-Control "no-cache, no-store"
Pragma "no-cache"
} }
handle @morty { # CSP (see http://content-security-policy.com/ )
header Content-Security-Policy "default-src 'none'; style-src 'self' 'unsafe-inline'; form-action 'self'; frame-ancestors 'self'; base-uri 'self'; img-src 'self' data:; font-src 'self'; frame-src 'self'" header @imageproxy {
reverse_proxy localhost:3000 Content-Security-Policy "default-src 'none'; img-src 'self' data:"
} }
header @notimageproxy {
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"
}
# SearXNG
handle { handle {
reverse_proxy localhost:4040 { encode zstd gzip
reverse_proxy localhost:88 {
header_up X-Forwarded-Port {http.request.port} header_up X-Forwarded-Port {http.request.port}
header_up X-Forwarded-TlsProto {tls_protocol} header_up X-Forwarded-Proto {http.request.scheme}
header_up X-Forwarded-TlsCipher {tls_cipher}
header_up X-Forwarded-HttpsProto {proto}
} }
} }