Configuration for Caddy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{$DOMAIN}:443 { | |
log { | |
level INFO | |
output file {$LOG_FILE} { | |
roll_size 10MB | |
roll_keep 10 | |
} | |
} | |
# Use the ACME HTTP-01 challenge to get a cert for the configured domain. | |
tls {$EMAIL} | |
# This setting may have compatibility issues with some browsers | |
# (e.g., attachment downloading on Firefox). Try disabling this | |
# if you encounter issues. | |
encode gzip | |
# Notifications redirected to the WebSocket server | |
reverse_proxy /notifications/hub vaultwarden:3012 | |
# Proxy everything else to Rocket | |
reverse_proxy bitwarden:80 { | |
# Send the true remote IP to Rocket, so that bitwarden_rs can put this in the | |
# log, so that fail2ban can ban the correct IP. | |
header_up X-Real-IP {remote_host} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment