Remove redundant cursor styling
This commit is contained in:
parent
080b4bdaf1
commit
b24dd72ae0
93 changed files with 9058 additions and 1 deletions
46
clio-infra/nixos/Caddyfile
Normal file
46
clio-infra/nixos/Caddyfile
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
# Caddyfile snippet for phone-recorder
|
||||
# Add this to your global /etc/caddy/Caddyfile
|
||||
#
|
||||
# Caddy will automatically obtain and renew HTTPS certificates
|
||||
|
||||
recordings.hallocks.xyz {
|
||||
# Proxy everything to FastAPI
|
||||
reverse_proxy localhost:8000
|
||||
|
||||
# Security headers
|
||||
header {
|
||||
X-Content-Type-Options nosniff
|
||||
X-Frame-Options SAMEORIGIN
|
||||
Referrer-Policy strict-origin-when-cross-origin
|
||||
-Server
|
||||
}
|
||||
|
||||
# Logging for fail2ban
|
||||
log {
|
||||
output file /var/log/caddy/recordings.log {
|
||||
roll_size 10mb
|
||||
roll_keep 5
|
||||
}
|
||||
format json
|
||||
}
|
||||
}
|
||||
|
||||
# ============================================================
|
||||
# Other services (for reference when setting them back up):
|
||||
# ============================================================
|
||||
|
||||
# todo.hallocks.xyz {
|
||||
# reverse_proxy localhost:3456 # Vikunja
|
||||
# log {
|
||||
# output file /var/log/caddy/todo.log
|
||||
# format json
|
||||
# }
|
||||
# }
|
||||
|
||||
# passwords.hallocks.xyz {
|
||||
# reverse_proxy localhost:8080 # Vaultwarden
|
||||
# log {
|
||||
# output file /var/log/caddy/passwords.log
|
||||
# format json
|
||||
# }
|
||||
# }
|
||||
Loading…
Add table
Add a link
Reference in a new issue