• 0 Posts
  • 13 Comments
Joined 11 months ago
cake
Cake day: October 20th, 2023

help-circle





  • [Heres](file:///home/ja/IT/git/selfhosted-apps-docker/caddy_v2/readme.md) a detailed guide for how to setup caddy reverse proxy. Includes many setups and even monitoring who connects from where to what, though to get that running is bit of work.

    is it just the usual way of proxy passing to the http://IP.address:port?

    for caddy it is, if it can ping the machine, it can send traffic its way

    how do I migrate my current setup (i.e. keys and configs)?

    what I like about caddy is that all that is needed is copy paste the simple caddy config file, that is thats needed to move setup from caddy to caddy

    What is the best way to approach this mixed system?

    I think every reverse proxy can do what you need, including your already running nginx, so you get answers based on personal preference of users. I run before trafik, got guide for that too… its too complex with lot of abstraction layers, and it polutes docker compose files with labels which I dont like, but it is powerful. I played bit with nginx but other than being kinda gold standard of reverse proxy it was ugly boilerplate config compared to caddy. Caddy was simple, clean, and really… just worked. Though you listed using authentification through reverse proxy and there caddy has a shortcoming where you need to do every user manually, instead of just telling here use this file of users/passwords like traefik can.



  • is it worth learning docker and deploying all my services that way or should I just continue with the way i have been doing it for years now?

    100% worth!

    It is really amazing approach that eases so many aspects and makes you feel more in control and more willing to try stuff.

    This repository should be helpful.

    Examples of bunch of popular services running in docker and some other stuff like backups with borg or kopia.

    using Arch for my home server

    I too run Arch as my go-to linux server, usually docker host is being its main job. Sometimes wireguard node or NUT sever for UPS.

    Reason being its a damn good OS and I am most comfortable with it since I am running it on my main desktop. But another thing is that I usually run under some hypervisor(hyper-v and esxi) as a virtual machine, not straight on metal. So taking snapshot of it is matter of second and reverting to that snapshot is a minute… so that is one aspect that lets me go with any linux I damn like without that much consideration for reputation of stability.

    That repo that I linked has even notes on arch fresh install, but arch started to include archinstall script on ISO, i decided to rather use that.

    I started to deploy Arch so much that I even have few ansible playbooks to get arch the way I like. Which mostly means some basic services and packages and workflow being about nnn file manager and micro text editor.

    Also recommend you use lts kernel when installing arch, just for that extra stability.

    Also it seem you were running xorg too, which I recommend abandoning. So much extra packages, so much more that can go wrong on update compared to bare arch with terminal and ssh… but if it really ease your workflow then fine.


  • Would it be possible to use a DNS server and reverse proxy together?

    Sure, reverse proxy is a web server whos job is to be in charge of ports 80 and 443 and decide to what other webservers send traffic based on request url

    Can I have Internal and external DNS?

    Probably, who knows what you really means. Split dns maybe?

    Should I switch to running a bare-metal hypervisor?

    If you need it. Seems your needs are met with just docker.

    What should I use for a DNS Server?

    dnsmasq works and I used it for a time, then I moved to having opnsense as my firewall and use its unbound service.