Hi I have installed Nexcloud on Windows 10 using Docker I’ve been following general instruction:
docker run ^
–sig-proxy=false ^
–name nextcloud-aio-mastercontainer ^
–restart always ^
–publish 80:80 ^
–publish 8080:8080 ^
–publish 8443:8443 ^
–volume nextcloud_aio_mastercontainer:/mnt/docker-aio-config ^
–volume //var/run/docker.sock:/var/run/docker.sock:ro ^
-e NEXTCLOUD_DATADIR=“/run/desktop/mnt/host/c/ncdata” ^
nextcloud/all-in-one:latest
I’ve used additionally -e SKIP_DOMAIN_VALIDATION=true because my computer is behind firewall
On my gateway I’ve forwarded:
444 → 443 (I coudn’t use 443 because this port is restricted to my Unify console access)
80
8080
8443
I have public, but not static IP, I’m using no-ip service to obtain domain - domain is A type.
When I’m checking log of my nexcloud-aio-apache container I see following:
2023-08-31 15:22:56 {“level”:“error”,“ts”:1693488176.0123231,“logger”:“tls.obtain”,“msg”:“could not get certificate from issuer”,“identifier”:“XXXXXXX.ddns.net”,“issuer”:“acme-v02.api.letsencrypt.org-directory”,“error”:“HTTP 500 urn:ietf:params:acme:error:serverInternal - Error retrieving account "https://acme-staging-v02.api.letsencrypt.org/acme/acct/113886744\”“}
2023-08-31 15:22:56 {“level”:“error”,“ts”:1693488176.0124395,“logger”:“tls.obtain”,“msg”:“will retry”,“error”:”[XXXXXXX.ddns.net] Obtain: [XXXXXXX.ddns.net] creating new order: attempt 3: https://acme-staging-v02.api.letsencrypt.org/acme/new-order: HTTP 500 urn:ietf:params:acme:error:serverInternal - Error retrieving account "https://acme-staging-v02.api.letsencrypt.org/acme/acct/113886744\" (ca=https://acme-staging-v02.api.letsencrypt.org/directory)",“attempt”:98,“retrying_in”:21600,“elapsed”:1879400.0043445,“max_duration”:2592000}
Unfortunetly I can’t log-in into Nexcloud nor from local network using https://localIP:443 neither from outside using https://XXXXXXX.ddns.net:444, each time I’m recieving ERR_SSL_PROTOCOL_ERROR. I have no problem opening Nextcloud AIO login using 8080 port (which is blocked while apache is running).
Thanks in advance for any help / suggestion what can be wrong…