Hi all,
Ive gone through the docs and google multiple times and cant seem to solve this one. I cant get past the domain validation, if i skip the check, i cant get AIO up so there must be an issue with my DNS or install somehow…
Setup, each are on separate machines
- Caddy reverse proxy. Working for everything else on the netowrk
- Windows Server 2019 DNS server
- Linux 24.04 LTS, Docker, Nextcloud AIO
Install parameters
sudo docker run \
--init \
--sig-proxy=false \
--name nextcloud-aio-mastercontainer \
--restart always \
--publish 8080:8080 \
--env APACHE_PORT=11000 \
--env APACHE_IP_BINDING=0.0.0.0 \
--volume nextcloud_aio_mastercontainer:/mnt/docker-aio-config \
--volume /var/run/docker.sock:/var/run/docker.sock:ro \
nextcloud/all-in-one:latest
Caddy file
https://<domain>:443 {
reverse_proxy <ip>:11000 {
transport http {
tls_insecure_skip_verify
}
}
}