Hi!
I set up Nextcloud using this video guide.
I’m trying to get my Nextcloud calendars working with my Apple devices. As stated in the docs, Apple is forcing users to use SSL for this. As my Nextcloud instance is hosted on my own network and I access it via a VPN while away (i.e. no need for SSL), I tried looking around for ways to bypass this, but it seems like there aren’t any.
I found this guide which seems to be exactly what I’m looking for, but I’m stuck. I would’ve asked the user who posted the guide, but they haven’t been active for a while.
To be specific:
- I don’t have an email linked to my Nextcloud admin account. What do I put into
RUN /usr/local/bin/setssl.sh admin@domain.tld nextcloud.domain.tld
? - As I use an internal IP as my “domain” (i.e. how I access my Nextcloud server), what do I put for
nextcloud.domain.tld
? Do I include the port (192.168.x.x:8080
) or not (192.168.x.x
)? - My biggest issue: After saving
setssl.sh
and giving it executable permissions (I did this withsudo chmod -x setssl.sh
, I hope that’s right), the guide says I should
modify your
docker run
ordocker-compose
command to include the changes
Is this referring to the command to start Nextcloud from the video guide I mentioned at the beginning? That would be
docker run --name nextcloud -d -p 8080:80 -v /home/pi/nextcloud:/var/www/html --network nextcloud-net nextcloud
I’m unsure about what to change and especially weary about running docker build --tag nextcloud_ssl
, because it sounds like I’ll be making a new Nextcloud instance that’s not related to my old one at all. Of course, I barely have anything stored in my Nextcloud instance at the moment, so it wouldn’t be too big of a hassle to start new.
Thanks for trying to help!