Avatar

Hellmo_luciferrari

Hellmo_Luciferrari@lemm.ee
Joined
15 posts • 233 comments
Direct message

I will give this a shot! Thank you for the help. I will report back, in hopes that between your knowledge and my fumbles that someone else too can learn from this!

permalink
report
parent
reply

so in my traefik.yml file I have cloudflare set as my certresolver as follows:

certificatesResolvers:
  cloudflare:
    acme:
      email: email@example.com
      storage: acme.json
      caServer: https://acme-v02.api.letsencrypt.org/directory # prod (default)
      # caServer: https://acme-staging-v02.api.letsencrypt.org/directory # staging
      dnsChallenge:
        provider: cloudflare
        #disablePropagationCheck: true # uncomment this if you have issues pulling certificates through cloudflare, By setting this flag to true disables the need to wait for the propagation of the TXT record to all aut>
        #delayBeforeCheck: 60s # uncomment along with disablePropagationCheck if needed to ensure the TXT record is ready before verification is attempted 
        resolvers:
          - "1.1.1.1:53"
          - "1.0.0.1:53"

And I had to get the secret mounted via the docker-compose file.

So where you have:

tls:

        certResolver: examplecom-dns

Do I have to redefine all of the same information I did in my Traefik yml but in this separate config.yml?

(I did set it up in my traefik.yml and docker-compose.yml to mount and use this config, which I had commented out for later use.


Thank you so much for the help!


Edit:

Essentially I am trying to get my PiHole which is hosted on another pi setup with an SSL cert for local use only:

So in looking at your config I tried using:

http:
  routers:
    pihole-rtr:
      entryPoints:
      - https
      service: pihole-rtr
      rule: "Host(`ph.local.domain.com`)"
      tls:
        certResolver: cloudflare

  services:
    pihole-svc:
      loadBalancer:
        servers:
          - url: "http://<ip>/admin"

However when doing this error logs returned:


2024-07-08T15:04:27-04:00 ERR error="the service \"pihole-rtr@file\" does not exist" entryPointName=https routerName=pihole-rtr@file
2024-07-08T15:04:28-04:00 ERR error="the service \"pihole-rtr@file\" does not exist" entryPointName=https routerName=pihole-rtr@file

I am doing something very wrong… And feel a little lost.

permalink
report
parent
reply

Would the file provider configs live on the Traefik server, or would they need to be on the external service. Reading through this, and looking at the example configuration files doesn’t really seem to point that out. Sorry for the noob questions.

Trying to understand this, but the way the documentation is written is different than I am used to.

Thank you!

permalink
report
parent
reply

I want to investigate it. I know it works well on my laptop, which the big difference in the 2 is that one is an Nvidia GPU and the other an Intel Integrated. So it could be video related. Who knows.

Thank you all the same!

permalink
report
parent
reply

I may have misspoke, I use an AUR helper to install many programs and utilities, and am not at my computer to view the actual source. So I took a gamble and guessed AUR. My apologies.

It could have been other instability, as I mentioned in another comment I didn’t really look too deep into it since it wasn’t so important. And by no means am I blaming Thunderbird (regardless of source) for the issues I have had. It truly is a great email client.


Edit: It is from official source, not AUR. I have the same setup on my personal laptop. It came from Extras, and not AUR.

May have to investigate a bit. May have to figure out each directory to purge, do a pacman -Rnsu thunderbird

Then purge directories related, then reinstall.

permalink
report
parent
reply

Guess I will have to play around with it again. I never really investigated the crashes. Just moved away from it as email isn’t as important to my personal life as it is to my work life.

permalink
report
parent
reply

It was within the past week or 2. I completely understand. Thunderbird is awesome. It is likely an issue with my inbox sizes for the 3+ inboxes I have connected.

permalink
report
parent
reply

I will likely go back and try that. I however know just like in other email clients, if I have thousands of emails per account its bound to be slower. I did clean out each box. I plan to use Thunderbird again once I clear out all of those emails and consolidate to one email address.

I will have to investigate which directories to purge.

permalink
report
parent
reply

To get Nvidia working on Arch here is what I did:

During installation of Arch when it asked if I wanted to chroot into my distro I did. However if you enter commandline by hitting CTR+ALT+<F1 or F2 or F3> to change to a virtual console. If you are doing this from a chroot environment you don’t need sudo.


edit the mkinitcpio.conf

sudo nano /etc/mkinitcpio.conf

In the MODULES=() section I added “nvidia nvidia_modeset nvidia_uvm nvidia_drm” without quotes. So it looked like this:

MODULES=(nvidia nvidia_modeset nvidia_uvm nvidia_drm)

Afterwards I updated my initramfs images by running:

sudo mkinitcpio -P

Then I edited my grub config:

sudo nano /etc/default/grub

Find the line that says “GRUB_CMDLINE_LINUX_DEFAULT=”“”

GRUB_CMDLINE_LINUX_DEFAULT="nvidia-drm.modeset=1" 

Then I updated grub

sudo grub-mkconfig -o /boot/grub/grub.cfg

Note: I use the Nvidia Proprietary drivers


Resources: Arch Wiki


I do not recommend Manjaro especially if you are going to be using the AUR (Arch User Repository) as it can cause things to break.

permalink
report
reply

I was using Thunderbird, but I have had a number of issues with it. Crashing seems to happen whether I use the Flatpak or install from AUR.

I have switched back to using web clients for my mail for the time being.

permalink
report
reply