• 0 Posts
  • 27 Comments
Joined 2 months ago
cake
Cake day: February 5th, 2025

help-circle



  • The biggest issue I have with Caddy and running ancillary services as some services attempt to utilize port 80 and/or 443 (and may not be configurable), which of course isn’t possible because Caddy monopolizes those ports. The best solution to this I’ve found is to migrate Caddy and my services to docker containers and adding them all to the same “caddy” network.

    With your caddy instance still monopolizing port 80 and 443, you can use the Docker expose or port parameters to allow your containers to utilize port 80 and/or 443 from within the container, but proxify it on the host network. This is what my caddy config looks like;

    {
            admin 127.0.0.1:2019
            email {email}
            acme_dns cloudflare {token}
    }
    domain.dev, domain.one {
            encode zstd gzip
            redir https://google.com/
    }
    *.domain.dev, *.domain.one {
            encode zstd gzip
            @book host bk.domain.dev bk.domain.one
            handle @book {
                    reverse_proxy linkding:9090
            }
            @git host git.domain.dev git.domain.one
            handle @git {
                    reverse_proxy rgit:8000
            }
            @jelly host jelly.domain.dev jelly.domain.one
            handle @jelly {
                    reverse_proxy {ip}:8096
            }
            @status host status.domain.dev status.domain.one
            handle @status {
                    reverse_proxy status:3000
            }
            @wg host wg.domain.dev wg.domain.one
            handle @wg {
                    reverse_proxy wg:51820
            }
            @ping host ping.domain.dev ping.domain.one
            handle @ping {
                    respond "pong!"
            }
    }
    

    It works very well.



    1. This number is taken from the Wikipedia page, and represents a lab setting from totally uncompressed to full HEVC encoding. It’s not representative of data savings that you get from one video codec vs another, which is likely less than 4-6% between something like VP9 and HEVC… The 25-50% of completely fucking laughable in a realistic setting and you look like and idiot for bringing it up.
    2. It’s absolutely an overestimation by every conceivable metric available.
    3. You can encode to whatever you want, but if you take a VP9 encoded video and re-encode it, you may only save 1% and it will take several hours to encode. There are even situations where you will save nothing, or the resultant video file is actually larger even with HEVC.

    It’s zipping a zip file. Endlessly re-compressing things doesn’t yield positive results in the way you describe.


  • Blu-rays are compressed.

    All streaming data is compressed at some point. I clearly meant not over-compressed. 4K video or UHD BD can both be taken from their original states and processed through HEVC to get crisp 1080p h265 10bit at a steep data discount. But it’ll take a very long time to process. It’s simply not worth it.

    “Zipping a zip file” doesn’t apply here because zips are lossless.

    It’s a figurative expression and I feel that was pretty damn obvious…


    1. I’ve been encoding HEVC for a long time and I’ve not once seen a file-size drop that dramatically. You’re outrageously overestimating the file-size savings here.
    2. If a video file is already compressed you’ll see diminished and even negative returns by attempting to compress it further. OP seems to be taking pre compressed video files from the internet and attempting to compress them again (lossy to lossy) which is very very very stupid.

  • I’m confused… Are you grabbing pirated video files from the net and re-encoding them… If you’re attempting to further compress already compressed video, you’re just zipping a zip file. It’s crazy and you’ll do nothing but bloat the file size (versus a properly compressed video file) and further reduce the quality of the video via artifacts. I’ll call the police and have you committed right now.

    If you’re grabbing 8/4k or UHD BD movies and re-encoding them into lets say, 1080p HEVC 10bit, I could see that being worth it if you really love the movie (and have 5 days with nothing to do), but only if you’re going from an inferior compression to better (h264 to h265), otherwise like I said, you’re zipping a zip file.










  • Doesn’t support docker host names, which is a bummer. You have to use IPv4/6 and the docker IP for services to work correctly. The service setup is also a bit weird. You can’t seem to delete a service once it’s been made. You can only “hide” it. So I just set this up, and mistyped an IP, and now I have a service with only 70% uptime because the first few pings failed due to the mistyped IP. (https://x0.at/ZvM1.png) There doesn’t seem to be a way to reset the uptime, or delete the monitor. You actually have to rename the service monitor to something random, and “hide” it, then remake your service like new.

    Seems weird.

    Nice dashboard though.