2021-11-08 19:15:57 -06:00
|
|
|
# vim: ft=caddyfile
|
|
|
|
|
|
|
|
search.bbaovanc.com {
|
|
|
|
encode zstd gzip
|
|
|
|
import hsts
|
|
|
|
|
|
|
|
@api {
|
|
|
|
path /config
|
|
|
|
path /status
|
|
|
|
}
|
|
|
|
|
|
|
|
@static {
|
|
|
|
path /static/*
|
|
|
|
}
|
|
|
|
|
|
|
|
@morty {
|
|
|
|
path /morty/*
|
|
|
|
}
|
|
|
|
|
|
|
|
@notmorty {
|
|
|
|
not path /morty/*
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
# Enable cross-site filter (XSS) and tell browser to block detected attacks
|
|
|
|
X-XSS-Protection "1; mode=block"
|
|
|
|
|
|
|
|
# Prevent some browsers from MIME-sniffing a response away from the declared Content-Type
|
|
|
|
X-Content-Type-Options "nosniff"
|
|
|
|
|
|
|
|
# Disallow the site to be rendered within a frame (clickjacking protection)
|
|
|
|
X-Frame-Options "SAMEORIGIN"
|
|
|
|
|
|
|
|
# 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=()"
|
|
|
|
|
|
|
|
# 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'"
|
|
|
|
|
|
|
|
# Referer
|
|
|
|
Referrer-Policy "no-referrer"
|
|
|
|
|
|
|
|
# X-Robots-Tag
|
|
|
|
X-Robots-Tag "noindex, noarchive, nofollow"
|
|
|
|
}
|
|
|
|
|
|
|
|
header @api {
|
|
|
|
Access-Control-Allow-Methods "GET, OPTIONS"
|
|
|
|
Access-Control-Allow-Origin "*"
|
|
|
|
}
|
|
|
|
|
|
|
|
header @static {
|
|
|
|
#Cache-Control "public, max-age=31536000"
|
|
|
|
Cache-Control no-cache
|
|
|
|
defer
|
|
|
|
}
|
|
|
|
|
|
|
|
header @notmorty {
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
|
|
|
|
handle @morty {
|
|
|
|
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'"
|
|
|
|
reverse_proxy localhost:3000
|
|
|
|
}
|
|
|
|
|
|
|
|
handle {
|
|
|
|
reverse_proxy localhost:4040 {
|
|
|
|
header_up X-Forwarded-Port {http.request.port}
|
|
|
|
header_up X-Forwarded-TlsProto {tls_protocol}
|
|
|
|
header_up X-Forwarded-TlsCipher {tls_cipher}
|
|
|
|
header_up X-Forwarded-HttpsProto {proto}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
import basicerrors
|
2022-04-02 23:27:31 -05:00
|
|
|
}
|