Trying to deploy Nextcloud-AIO on the latest TrueNAS Scale version, but I can’t pass the domain validation step.
If I try to reach http:/ /10.166.26.49:11000 unable to reach.
This is my docker-compose file:
networks:
laforcenet:
external: True
services:
nextcloud-aio-mastercontainer:
container_name: nextcloud-aio-mastercontainer
environment:
- APACHE_IP_BINDING=0.0.0.0
- APACHE_PORT=11000
- NEXTCLOUD_DATADIR=/mnt/Data/CiteDesNuages/Data
- NEXTCLOUD_MOUNT=/mnt/Data/CiteDesNuages/Config
- NEXTCLOUD_MEMORY_LIMIT=4096M
image: ghcr.io/nextcloud-releases/all-in-one:latest
init: True
networks:
laforcenet:
ipv4_address: 10.166.26.49
restart: 'no'
volumes:
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config
- /var/run/docker.sock:/var/run/docker.sock:ro
volumes:
nextcloud_aio_mastercontainer:
name: nextcloud_aio_mastercontainer
I also tried to simply use https:/ /10.166.26.49:8080 with NPM instead of http:/ /10.166.26.49:11000 but curl https:/ /domain.com will always return ““ (note that curl https:/ /domain.com/setup return some html code)
2025-12-04 19:29:37.100634+00:00NOTICE: PHP message: The response of the connection attempt to "https://domain.com:443" was:
2025-12-04 19:29:37.100731+00:00NOTICE: PHP message: Expected was: sdfsdfsdfds
2025-12-04 19:29:37.100775+00:00NOTICE: PHP message: The error message was:
2025-12-04 19:29:37.100793+00:00NOTICE: PHP message: Please follow https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md#how-to-debug in order to debug things!
Not sure how to debug that,