I tried with SKIP_DOMAIN_VALIDATION=true
and properly restarting (removing volumes and containersS) but I see alway this screen:
Nextcloud AIO v9.6.0
Domaincheck container is not running
This is not expected. Most likely this happened because port 8383 is already in use on your server. You can check the mastercontainer logs and domaincheck container logs for further clues. You should be able to resolve this by adjusting the APACHE_PORT by following the reverse proxy documentation. Advice: have a detailed look at the changed docker run command for AIO.
Nginx configuration:
location / {
proxy_pass https://127.0.0.1:8888$request_uri;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Port $server_port;
proxy_set_header X-Forwarded-Scheme $scheme;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Accept-Encoding "";
proxy_set_header Host $host;
client_body_buffer_size 512k;
proxy_read_timeout 86400s;
client_max_body_size 0;
# Websocket
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
docker-compose file
volumes:
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config
- /var/run/docker.sock:/var/run/docker.sock:ro
ports:
- 8888:8080
environment:
# APACHE_PORT: 8888
# APACHE_IP_BINDING:
SKIP_DOMAIN_VALIDATION: true
Tried with internal docker address on Nginx and commented docker-compose lines.
There is a clear way to disable this check?