50501

929 readers
1 users here now

50501 is a nationwide movement of Americans standing for democracy and against the GOP Administration's undemocratic vices by protesting across 50 states to demand upholding the Constitution and ending executive overreach


Rules

I. Non-Violent / Inclusive


We must center safety while maintaining message clarity. No racism, sexism, violence, derogatory language, hate speech, personal attacks, homophobia, ageism, or other type of disparaging remarks that are abusive in nature. Attacks specifically against marginalized or vulnerable groups will not be tolerated. Violations of this rule may be met with temporary or permanent bans at moderator discretion.


II. Protect Your Information


It is imperative you guard your personal info. Any personal info will be removed to protect you!


III. Maintain Integrity


No misinformation, spam, trolling, etc. Swift removal/ban when detected. Let's keep it clean and fact-proven! Discuss relevant topics in appropriate communities.


IV. No AI or Bots


Only allowed bot is 50501. No other AI or bots are allowed here.


V. Follow Platform Rules


Abide by the platform rules as stated in the Lemmy CoC.


Alternative Themes


Local Communities


State Communities

Rep Community Mod Request


  • Email: community(at)50501.chat

Community List | Organizers



founded 6 months ago
ADMINS
501
 
 

Errol Musk, rarely mentioned by his tech billionaire son, dismissed New York Times report as ‘nonsense’ and ‘false’

502
 
 

cross-posted from: https://lemmy.ml/post/36558223

According to a BDS statement, Carrefour operations in both countries—run by the Emirati Majid Al Futtaim Group—were shut down after suffering “heavy financial losses” and reputational damage linked to the company’s complicity in Israeli actions against Palestinians.

The global boycott campaign against Carrefour was launched in December 2022, after revelations that Carrefour Israel had provided food baskets and gift packages to Israeli soldiers and organized fundraising drives on their behalf. The group also accused the chain of forging partnerships with Israeli banks and tech companies implicated in human rights violations.

503
504
505
506
132
cleansing (sopuli.xyz)
submitted 19 hours ago* (last edited 19 hours ago) by SSUPII@sopuli.xyz to c/lemmyshitpost@lemmy.world
 
 
507
 
 
508
 
 
509
 
 
510
 
 
511
 
 

With the recent discussions around replacing Spotify with selfhosted services and the possibilities to obtain the music itself, I've been finally setting up Navidrome. I had to do quite a bit of reorganization to do with my existing collection (beets helping a ton) but now it's in a neatly organized structure and I'm enjoying it everywhere. I get most of my stuff from Bandcamp but I have a big catalog from when I've still had a large physical collection.

I'm also still working on my docker quasi gitops stack. I've cleaned up my compose files and put the secrets in env files where I hadn't already, checked them into my new forgejo instance and (mostly) configured renovate. Komodo is about to get productive but I couldn't find the time yet. Also I need to figure out how to check in secrets in a secure way. I know some but I haven't tried those with Komodo yet. This close of my fully automated update-on-merge compose stacks!

I've also been doing these for quite a while and decided to sometimes post them in !selfhosting@slrpnk.net to possibly help moving a bit from the biggest Lemmy instance, even though this community as it is is perfectly fine as well as it seems.

What's going on on your servers? Anything you are trying to pursue at the moment?

512
 
 
513
 
 

This week's fediverse news:

  • Mastodon launches paid hosting service for institutions
  • Gaza Verified is a grassroots initiative to verify Palestinians on Mastodon who need aid, and who have recently completed a 22k USD fundraiser
514
515
516
 
 

Well that was unexpected

517
518
 
 

i'm trying to setup nginx to run as a proxy to aggregate multiple services. running on different ports on the server, using nginx to let me connect to all the services by going to a specific subdirectory. so i can keep only one port open in the router between my lab and the main house network.

i'm using the following config file from an example i found to do this, with a landing page to let me get to the other services:

used config file


server { listen 80; server_name 10.0.0.114; # Replace with your domain or IP

# Redirect HTTP to HTTPS
return 301 https://$host$request_uri;

}

server { listen 1403 ssl; # Listen on port 443 for HTTPS server_name 10.0.0.114; # Replace with your domain or IP

ssl_certificate /certs/cert.pem;  # Path to your SSL certificate
ssl_certificate_key /certs/key.pem;  # Path to your SSL certificate key

location / {
    root /var/www/html;  # Path to the directory containing your HTML file
    index index.html;  # Default file to serve
}


location /transbt {
#configuration for transmission
    proxy_pass http://10.89.0.3:9091/;  
proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;$proxy_add_x_forwarded_for;
}

but the problem i'm having is that, while nginx does redirect to transmission's login prompt just fine, after logging in it tries to redirect me to 10.0.0.114:1403/transmission/web instead of remaining in 10.0.0.114:1403/transbt and breaks the page. i've found a configuration file that should work, but it manually redirects each subdirectory transmission tries to use, and adds proxy_pass_header X-Transmission-Session-Id; which i'm not sure what's accomplishing: github gist

is there a way to do it without needing to declare it explicitly for each subdirectory? especially since i need to setup other services, and i doubt i'll find config files for those as well it's my first time setting up nginx, and i haven't been able to find anything to make it work.

Edit: I forgot to mention. The server is still inside of a nat. It's not reachable by the outside. The SSL certificate is self signed and it's just a piece of mind because a lot of things connect to the home net. And none of the services I plan to use only support http.

519
 
 
520
 
 
521
522
523
524
525
view more: ‹ prev next ›