docker/web/Caddyfile
author ymh <ymh.work@gmail.com>
Mon, 29 Jul 2024 23:18:55 +0200
changeset 131 2a18dfe8bfc0
parent 130 5eeebcbdee22
permissions -rw-r--r--
last change before install

tralalere.iri-research.org {
    tls internal

    handle_path /static/* {
        root * /static
        file_server
    }
    
    handle /* {
        reverse_proxy server:8000 {
            transport uwsgi {
                uwsgi_param UWSGI_SCHEME https
            }
        }
    }
}