# naiveproxy server encapsulated # Usage First, copy `Caddyfile.template` to `conf/Caddyfile` and edit your configuration manually. You would need to fill in your email (used to applying for TLS certs), your domain and your username and password for authentification. Alternatively, you can drop your other web services (such as static pages and reverse proxies) here. Then, you can run: ```shell docker run --rm -p 80:80 -p 443:443 -p 443:443/udp \ -v ./conf:/conf -v ./data:/data -v ./log:/log \ --name naiveserver naiveserver ``` or you can use docker compose: ```shell docker-compose up -d ```