codema.in

Secure a nextcloud instance on Debian 7 Wheezy that can no longer get certificates via certbot

PP Pirate Praveen Public Seen by 61

We were running a shared NextCloud instance at nextcloud.libreinfra.org for sometime on Debian GNU/Linux 7 Wheezy. It was setup on a shared hosting tool that is no longer maintained (Manu would know the details), upgrading the host was not possible. Most other services were migrated to other systems but this instance remained on this host. Sometime back certbot stopped working and we could not continue using https, so this was left untouched for a long time. Recently Manu brought back the service without https, but I was reluctant to enter my password on a plain http site. I found two ways to securely access this site. First was to create an ssh tunnel to an lxc container on my laptop and then connect to the container from my laptop browser. (real-libreinfra)<---ssh-tunnel--->(lxc container)<----http---> (browser) I created a tunnel inside my lxc container using this command. `# ssh -L 10.0.3.218:80:nextcloud.libreinfra.org:80 root@libreinfra.org` Then on my laptop I added this in my /etc/hosts file `10.0.3.218 nextcloud.libreinfra.org` So visiting http://nextcloud.libreinfra.org will connect to my container and through the secure ssh tunnel will provide me access to my nextcloud instance securely. I confirmed the connection is actually going via my container using ngrep command. `sudo ngrep -d lxcbr0 any port 80` I also had to add ReadEtcHosts=yes in my /etc/systemd/resolved.conf so my changes to /etc/hosts will be honored. Additionally I also added an exception for nextcloud.libreinfra.org in DNS over HTTPS settings on my firefox. I settled for this since setting up a reverse proxy using Caddy on a server was not working. Since NextCloud/apache is strongly tied to the domain name (trusted domains setting for php and virtual hosts setting for apache), I could not get that working yesterday. Abhijth was curious to know how it was done today, so I gave it another fresh chance and I got it working. On my server also I had to switch to systemd-resolved and enable ReadEtcHosts=yes in my /etc/systemd/resolved.conf I added this crucial line header_up Host {upstream_hostport} in /etc/caddy/Caddyfile ``` oraclevm.j4v4m4n.in { # Set this path to your site's directory. root * /var/www/html # Reverse proxy to nextcloud.libreinfra.org reverse_proxy nextcloud.libreinfra.org:8080 { header_up Host {upstream_hostport} } # Or serve a PHP site through php-fpm: # php_fastcgi localhost:9000 } ``` Tunnel was created for 8080 port as caddy will need exclusive access to port 80. `sudo ssh -L 127.0.0.3:8080:nextcloud.libreinfra.org:80 root@libreinfra.org` and /etc/hosts was updated accrdingly `127.0.0.3 nextcloud.libreinfra.org` Now once this was setup, I was able to reach to nextcloud login page successfully, but nextcloud refused to service the actual login page with an error. `Add "oraclevm.j4v4m4n.in" as trusted domain in config/config.php`. I like it very much when error messages are helpful like this. Once this was added, anyone could access NextCloud securely ovet https at https://oraclevm.j4v4m4n.in (https to my server and then ssh tunnel to nextcloud server).

PP

Pirate Praveen Fri 12 Jan 2024 4:48PM

This was sent by email, earlier it failed, but now succeeded!