Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 551 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 551 Bytes

Vault

This repository contains Vaultwarden – an integrated open source password management solution.

Setup instructions

Setup a host in Caddy pointing to port 80.

# EXTERNAL SERVICE WITH CLOUDFLARE PROXY #

https://vault.example.com {

    # import logging
    import cloudflare
    import tls
    import compression
    import header

    # enable this rule after configuration
    # handle @cloudflare {
    #     respond /admin* 404
    # }

    handle @cloudflare {
        reverse_proxy vault-app-1:80
    }
    respond 403
}