I have a lemmy instance running but I’m having trouble with my reverse proxy config. I’m using Caddy. Previously I had used nginx but didn’t end up keeping the instance alive. Now I want to get it back up but I’ve since switched to Caddy because it’s just easier. I have several self hosted services already working great with caddy and don’t want to disrupt that.

I’ve found a few configs online but none seem to work. I’m running this on a standard ubuntu server 22.04 box.

Any ideas or suggestions?

  • irmadlad@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    10 hours ago

    I’m not sure if this will help you out since I’m really not sure what your problems are other than getting the reverse proxy to work. So, I’ll give you what I’ve found to work and if it’s not what you were looking for then you can just skip over what I"m yammering on about.

    The process:

    Spin up a container, let’s say it’s Dozzle and it needs port 1124. Container deployed, so lets put it in reverse proxy:

    Issue command together:

    sudo nano /etc/caddy/Caddyfile
    sudo systemctl restart caddy	
    

    Enter the following in the Caddyfile:

    dozzle.myverycooldomain.duckdns.org:443 {
    	reverse_proxy localhost:1124
    }
    

    Press ctrl x, press y, press enter, and the Caddy server restarts if you indeed issued the commands together. Now go to dozzle.myverycooldomain.duckdns.org for test run.