• 0 Posts
  • 68 Comments
Joined 2 years ago
cake
Cake day: June 1st, 2023

help-circle


  • If the container instructions say to set the TZ variable, this means that they bring all the necessary timezone information (for all timezones around the world) with them inside the container. For Alpine Linux, this would be the 1.5 MB (uncompressed) tzdata package.

    If you are instructed to link to those files on the host system, the container usually doesn’t come with the tzdata package and the only way for it to use your timezone is to use the information from the host system by mounting the 2 files.

    However, if you don’t mount these files, the container will usually run in UTC and won’t observe DST. So, all the times in log files and everything regarding time will be in UTC.














  • I like the summaries of notifications. This way, I don’t have to guess what an email is about from the first few words which usually are “Hi mbirth, I hope this email reaches you well”.

    The rest of the Apple Intelligence is stuff I can live without. However, Image Playground is nice to create contact pictures or some funny sticker. The newer proofing and grammatical suggestions are nice for second languages. So, it’s not all useless.





  • You have to actually add the middleware into the (default) chain for your https entrypoint (I think in most tutorials it’s called websecure) - in my static conf I have this:

    entryPoints:
      https:                                                           
        address: :443                                                  
        http:                                                          
          middlewares:                                                 
            - crowdsec-bouncer@file                                    
            - secure-headers@file 
    

    And in my dynamic conf I have this:

    http:
      middlewares:
        crowdsec-bouncer:
          plugin:
            crowdsec-bouncer-traefik-plugin:
              CrowdsecLapiKey: "### Enter your LAPI Key here ###"
              Enabled: true