mastodon.uno è uno dei tanti server Mastodon indipendenti che puoi usare per partecipare al fediverso.
Mastodon.Uno è la principale comunità mastodon italiana. Con 77.000 iscritti è il più grande nodo Mastodon italiano: anima ambientalista a supporto della privacy e del mondo Open Source.

Statistiche del server:

6,2K
utenti attivi

#tipsandtricks

4 post4 partecipanti0 post oggi
Ha risposto nella discussione

What’s Happening? Luis and I will go live to set up my Owncast server from scratch.

Expect tips, tricks, and hopefully a few laughs.

Plus, I'll discuss why self-hosting is the bee's knees for content creators.

When & Where? Monday, April 28th - 5:00 PM PST.

youtube.com/live/mEMi49VpTEo?f

Ironically, I will livestream on my YouTube channel and LinkedIn.

Catch you on the stream!

#Livestream #Community #JoinUs

📩 Whether at work, with friends or when shopping online - your e-mail is more than just a communications tool. It is your digital ID, the key to online services and often the first impression you make. A personal e-mail address creates trust and underlines your identity.

Find out in our blog how you can strengthen your digital presence with your own domain: mailbox.org/en/post/email-addr

#mailboxorg #OwnDomain #E-mailBrand #Identity #TipsAndTricks

Ha risposto nella discussione

Should I Stay or Should I Go Now? 30 Days Until Martial Law...?
By Jessica Wildfire • 20 Mar 2025.
the-sentinel-intelligence.net/ (Kind of a salacious title, but unfortunately not impossible either.)

And she links (Safe Travel Trans Americans Passport Policy) 19thnews.org/2025/03/safe-trav
(TGNC Checklist under Trump) lambdalegal.org/tgnc-checklist

(Travel State gov page on passport help with sex marker) travel.state.gov/content/trave
(Reddit thread A Guide for Americans to Leave) reddit.com/r/AmerExit/comments

(SF Chronicle on the Insurrection Act) sfchronicle.com/opinion/openfo

"Meanwhile, corporate media asks, “Can he do that?” These stories are engineered to distract the public with technicalities. While everyone’s debating what they can and can’t do, they are doing it.

We know this administration’s pattern of loose interpretation when it comes to law and historical precedent. There’s no reason to believe he’ll stop here, instead using this act to use force against anyone his administration considers a threat, regardless of their status or what they’re protesting.

You also have to remember this country has a long, established history of censoring speech and leading witch hunts. During WWI, god help you if you didn’t buy enough liberty bonds or called yourself a pacifist.

We’re the land of moral panics.

Every single one of this administration’s actions have been building toward this moment, when the president suspends our civil and human rights. It explains why they’ve taken such aggressive action toward federal agencies, firing tens of thousands of workers and purging their ranks of anyone who might say no. They’ve already been testing boundaries, daring courts to stop them as they shut down government operations and kidnap U.S. citizens."

(some bullshit from an insecure asshole puppetted for power) whitehouse.gov/presidential-ac
(How to move out of the USA) forbes.com/sites/laurabegleybl

The Sentinel-Intelligence · Should I Stay or Should I Go Now? 30 Days Until Martial Law...?It could happen.
#politics#pol#US

Google News in the past delivered good and reliable search results. Now it often delivers old news when I want to find something recent. I found that this technique works: instead of doing a regular search, click on the triangle in the Google News search box and you will get Advanced Search. There you can tell Google to give you timely search results. #tech #TipsAndTricks

Updated Version of the apache http caching setup for snac, including proxy media

I already wrote about caching here.
Now I extended what I cache a bit.
This was because after enabling the option to proxy media, I've seen access to the file paths /x/ and /y/ in addition to the path were snac stores the media that I include in my own posts ( /s/ ).
There are two locations to proxy media, depending if you requests the media via the mastodon api or via the web. (/x/ and /y/), oh and I added the nodeinfo2.0 path too, because I've noticed it was queried all the time by a lot of instances and it gives me pleasure to see something cached handed out in the access logs. 🙂 (I guess it is actually irrelevant for the system resources)
This is the updated setup:
Enable the relevant modules:

a2enmod expires cache cache_disk

Be sure "htcacheclean" is running to clean up the old disk cache. (under debian see /etc/default/apache-htcacheclean or else the relevant systemd service or whatever)
Then add this to the httpd Virtualhost config:

<LocationMatch "^/social/[^/]+/[xys]/|^/social/nodeinfo_2_0">
CacheEnable disk
Header set Cache-Control "max-age=86400, public" "expr=%{REQUEST_STATUS} == 200"
ExpiresActive On
ExpiresDefault "access plus 86400 seconds"
</LocationMatch>
This will use the disk cache to cache everything under the $username/s/, /x/ and /y/ paths, as well as for the /nodeinfo_2_0 path, utilizing mod_expires to generate the appropriate cache headers (for lazy ones like me). In this case caching it for 1 day.
Further reading and all options are explained under https://httpd.apache.org/docs/2.4/caching.html (and ff)

The Header that I set here, on the condition of Status code 200, is needed for the path /y/, because snac set no-cache on that location and mod_expires will honor that if we don't override it. I set it to the same Cache-Control value as mod_expires would. (I use mod_expires because it will additionally calculate the date and put that in the expires header. (hence the name I guess 😀 )

#Fediverse #Hosting #ITNotes #apache2 #httpd #Ownyourdata #Server #Snac #Snac2 #Tipsandtricks #Tutorial #Debian #caching
:xmpp:
snikket.deMenel (@menel@snikket.de)121 following, 80 followers · See updated version here: https://snikket.de/social/menel/p/1740228486.456200 Original: After seeing **Improving snac Performance with Nginx Proxy Cache** from @itnotes@snac.it-notes.dragas.net via --- https://snac.it-notes.dragas.net/itnotes/p/1738139676.258050 https://it-notes.dragas.net/2025/01/29/improving-snac-performance-with-nginx-proxy-cache/ --- I decided to prematurely optimize and adjust this for my apache2 httpd server in debian where I run snac. I've never done any