Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)M
Posts
2
Comments
31
Joined
2 yr. ago

Network automation engineer and general techie. Admin of mimiclem.me

  • I had a long comment but @criss_cross added more context than I could. To summarize, there is infrastructure in us-east-1 that can take you down even if you host in another region. Also lots of stuff there and closer=faster=better.

  • That's interesting to hear, finamp has been great for me for at least a year and a half. What kind of issues do you see if you don't mind me asking

  • Nwg-look can change all the theme settings at once. Check it out

  • Nwg-look can change all the theme settings at once. Check it out

  • Distros

    Jump
  • As it should be

  • I find Fedora provides a great balance between new code and stability. I've had lots of trouble getting distros like Ubuntu to work with newer apps and features.

  • Deleted

    Permanently Deleted

    Jump
  • Federation fail 😓

  • Deleted

    Permanently Deleted

    Jump
  • If you want to connect a device to your phone and have it use your phone's tailscale connection to your tailscale connected PC you'll need to have a way for the device connected to your phone to reach the tailnet.

    By default this is not enabled. Only tailnet devices can reach other tailnet devices.

    You'll need to setup some tailscale device as a subnet router -- either your phone or the PC itself -- to allow traffic to hit the tailnet. You'll also need to add your PC's LAN to the subnet router to advertise the subnet across tailscale. https://tailscale.com/kb/1019/subnets

  • Someone cropped the last line? What a sociopatl

  • The instructions change if you're using flatpak. I was only able to get it to work with a manual import

  • It makes me sad to hear someone reduce the institution of the Chicago dog to a pickle 😆

  • 600 symmetric, $60/mo

  • Orange sludge!

  • Fastest reference I ever saw

  • Added internal nginx and external proxy configs to a reply. I didn't make any changes to the postgres config.

    Hope it helps

  • This is the nginx.conf file for my external proxy:

     
        
    server {
        listen 443 ssl http2;
        listen [::]:443 ssl http2;
    
        server_name ;
    
        include /config/nginx/ssl.conf;
    
        location / {
            include /config/nginx/proxy.conf;
            include /config/nginx/resolver.conf;
    #        set $upstream_app lemmy;
            set $upstream_app proxy;
            set $upstream_port 8536;
            set $upstream_proto http;
            proxy_pass $upstream_proto://$upstream_app:$upstream_port;
    #        proxy_http_version 1.1;
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection "upgrade";
            proxy_set_header X-Real-IP $remote_addr;
    #        proxy_set_header Host $host;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            client_max_body_size 50M;            
        }
    }
    
    access_log /var/log/nginx/access.log combined;
    
    You’ll need to change  to the appropriate value. I’m forwarding requests to the proxy container referenced by the compose file
     
      
  • Selfhosted @lemmy.world

    Lemmy Community Seeder (LCS) - For pre-populating the "All" feed - nowsci

    github.com /Fmstrat/lcs
  • Self Hosted - Self-hosting your services. @lemmy.ml

    Lemmy Community Seeder (LCS) - For pre-populating the "All" feed - nowsci

    github.com /Fmstrat/lcs