Add files

This commit is contained in:
BBaoVanC 2021-11-09 02:15:57 +01:00
parent 1b598d853e
commit 57c9f0011e
13 changed files with 250 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
email
errors/img

28
Caddyfile Normal file
View File

@ -0,0 +1,28 @@
# vim: ft=caddyfile
{
grace_period 60s
import email
#acme_ca "https://acme-staging-v02.api.letsencrypt.org/directory"
}
(basicerrors) {
handle_errors {
templates
rewrite * /index.html
root * /etc/caddy/errors
file_server
}
}
(hsts) {
header Strict-Transport-Security max-age=31536000
}
(log) {
log {
output file /var/log/caddy/access.log
}
}
import conf.d/*

18
conf.d/bbaovanc.com Normal file
View File

@ -0,0 +1,18 @@
# vim: ft=caddyfile
www.bbaovanc.com {
redir https://bbaovanc.com{uri}
}
bbaovanc.com {
import hsts
import log
header Cache-Control no-cache
root * /var/www/bbaovanc.com/public
file_server {
precompressed br gzip
}
import basicerrors
}

13
conf.d/demo.bbaovanc.com Normal file
View File

@ -0,0 +1,13 @@
# vim: ft=caddyfile
demo.bbaovanc.com {
import hsts
header Cache-Control no-store
root * /var/www/demo.bbaovanc.com
file_server {
browse
}
import basicerrors
}

13
conf.d/drone.bbaovanc.com Normal file
View File

@ -0,0 +1,13 @@
# vim: ft=caddyfile
drone.bbaovanc.com {
encode zstd gzip
import hsts
import log
reverse_proxy localhost:8080 {
header_up X-Real-IP {remote_host}
}
import basicerrors
}

View File

@ -0,0 +1,10 @@
# vim: ft=caddyfile
errors.bbaovanc.com {
encode zstd gzip
import hsts
import log
root * /etc/caddy/errors/img
file_server
import basicerrors
}

20
conf.d/git.bbaovanc.com Normal file
View File

@ -0,0 +1,20 @@
# vim: ft=caddyfile
git.bbaovanc.com {
encode zstd gzip
import hsts
import log
handle_path /_/static/assets/* {
root * /var/www/git.bbaovanc.com/public
file_server
}
handle {
reverse_proxy localhost:81 {
header_up X-Real-IP {remote_host}
}
}
import basicerrors
}

13
conf.d/media.bbaovanc.com Normal file
View File

@ -0,0 +1,13 @@
# vim: ft=caddyfile
media.bbaovanc.com {
encode zstd gzip
import hsts
import log
root * /var/www/media.bbaovanc.com
file_server {
browse
}
import basicerrors
}

View File

@ -0,0 +1,13 @@
# vim: ft=caddyfile
remark.bbaovanc.com {
encode zstd gzip
import hsts
import log
reverse_proxy localhost:82 {
header_up X-Real-IP {remote_host}
}
import basicerrors
}

9
conf.d/rick.bbaovanc.com Normal file
View File

@ -0,0 +1,9 @@
# vim: ft=caddyfile
rick.bbaovanc.com {
encode zstd gzip
import hsts
import log
redir https://www.youtube.com/watch?v=dQw4w9WgXcQ;
}

View File

@ -0,0 +1,77 @@
# vim: ft=caddyfile
search.bbaovanc.com {
encode zstd gzip
import hsts
import log
@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

5
errors/dl.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh -x
mkdir -p img/
cd img/
curl https://http.cat | grep -oE '[0-9]{3}\.jpg' | sort | uniq | parallel $@ 'wget -q https://http.cat/{} && echo "DL {}"'

28
errors/index.html Normal file
View File

@ -0,0 +1,28 @@
{{ $code := placeholder "http.error.status_code" -}}
{{ $text := placeholder "http.error.status_text" -}}
{{ $host := placeholder "http.request.host" -}}
{{ $img_url := (printf "https://errors.bbaovanc.com/%s.jpg" $code) -}}
<html>
<head>
<title>{{ $code }} {{ $text }}</title>
<meta name="title" content="{{ $code }} {{ $text }}" />
<meta name="description" content="{{ $code }} {{ $text }}" />
<meta property="og:title" content="{{ $code }} {{ $text }}" />
<meta property="og:description" content="{{ $code }} {{ $text }}" />
<meta property="og:image" content="{{ $img_url }}"/>
<meta property="og:site_name" content="{{ $host }}" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:image" content="{{ $img_url }}"/>
<meta name="twitter:title" content="{{ $code }} {{ $text }}" />
<meta name="twitter:description" content="{{ $code }} {{ $text }}" />
</head>
<body bgcolor="black" text="white">
<center>
<h1>{{ $code }} {{ $text }}</h1>
<img src='{{ $img_url }}' alt="cat" />
</center>
</body>
</html>