💸 O fornecedor da infraestrutura desta máquina virtual notificou-me de que, a partir de março, vai aumentar unilateralmente a mensalidade de $5 para $6.60 (📈 +32%).<br><br>Alega que ela não estaria mais entre as ofertas, mas que, mesmo assim, permite que tão leal consumidor possa continuar usando sua máquina contratada sem precisar migrar ou reinstalar tudo do zero. <img src="https://neodb.social/media/emoji/snac.daltux.net/picard_facepalm.png" class="emoji" alt=":picard_facepalm:" title=":picard_facepalm:"><br><br>Enfim, até lá devo decidir o que fazer, ou não fazer, diante desse abuso. Em outras palavras, querem dizer: 🔪 "Pague mais ou tenha o retrabalho!". Lamentável.<br><br>Sugestões são bem-vindas!<br><br><a href="/tags/vps/" rel="tag">#vps</a> <a href="/tags/hosting/" rel="tag">#hosting</a><br>
Edited 1y ago
<p>Advertisement: We are happy to welcome our new sponsor at <a href="/tags/boxybsd/" rel="tag">#BoxyBSD</a>: ST-Hosting.com </p><p>ST-Hosting.com stands for performance, stability, and pragmatic solutions and hosting like:</p><p>- LXC & KVM servers on AMD EPYC, Ryzen, Intel Xeon systems<br>- Fair pricing and direct support from Germany<br>- Hosting made in Germany</p><p>We’re excited to have <a href="https://st-hosting.com" rel="nofollow"><span class="invisible">https://</span>st-hosting.com</a> on board! You can immediately start to provision your BSD based boxes (like <a href="/tags/freebsd/" rel="tag">#FreeBSD</a>, <a href="/tags/openbsd/" rel="tag">#OpenBSD</a>, <a href="/tags/netbsd/" rel="tag">#NetBSD</a>,...) at BoxyBSD in our new location in Germany, Nuremberg. Also, stay tuned for <a href="/tags/fosdem/" rel="tag">#Fosdem</a> ;) Thanks a lot!</p><p>cc: <a href="https://gyptazy.com/fedi/gyptazy" rel="nofollow">@gyptazy</a> <br><a href="/tags/runbsd/" rel="tag">#RUNBSD</a> <a href="/tags/bsd/" rel="tag">#BSD</a> <a href="/tags/opensource/" rel="tag">#OpenSource</a> <a href="/tags/hosting/" rel="tag">#Hosting</a></p>
<p>Link at end, but for anyone looking for a new, fully managed, blog provider. Micro One launched some time while I was offline! Costs $1 monthly and has a bunch of <a href="/tags/indieweb/" rel="tag">#IndieWeb</a> stuff built in <a href="http://micro.one/" rel="nofollow"><span class="invisible">http://</span>micro.one/</a> <a href="/tags/website/" rel="tag">#Website</a> <a href="/tags/openweb/" rel="tag">#OpenWeb</a> <a href="/tags/blog/" rel="tag">#Blog</a> <a href="/tags/blogging/" rel="tag">#Blogging</a> <a href="/tags/hosting/" rel="tag">#Hosting</a> <a href="/tags/host/" rel="tag">#Host</a></p>
<p>Myself and my good friend <span class="h-card"><a href="https://gofer.social/@bumble" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>bumble</span></a></span> (who runs a variety of server types on the fediverse), are joining forces to offer <a href="/tags/hosting/" rel="tag">#hosting</a> for <a href="/tags/gotosocial/" rel="tag">#GoToSocial</a> servers.</p><p>It's early days but we'd be keen to hear from anyone who wants to try running their own GoToSocial but doesn't have the skill, want, or equipment to run their own server.</p><p>The aim is to simply charge for running costs for the server. We will not take any costs from this (unless we end up with hundreds of them!). We anticipate a basic instance for one user (or a small handful) will be 5 euros per month and the charge is month to month. You pay each month in advance, and can cancel any time.</p><p>All you need is a domain name (or a sub-domain of your existing domain). We can help with this, or help you buy one for a few dollars/euros. We will handle all admin of the server.</p><p>Initially we are only looking for a few people to participate. If you are interested send me a direct message.</p>
Updated Version of the apache http caching setup for snac, including proxy media<br><br>I already wrote about caching <a href="https://snikket.de/social/menel/p/1738788742.236526" rel="nofollow">here</a>.<br>Now I extended what I cache a bit.<br>This was because after enabling the option to <a href="https://comam.es/snac-doc/snac.8.html#proxy_media" rel="nofollow">proxy media</a>, 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/ ).<br>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)<br>This is the updated setup:<br>Enable the relevant modules:<br><br>a2enmod expires cache cache_disk<br><br>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)<br>Then add this to the httpd Virtualhost config:<br><br><p><LocationMatch "^/social/[^/]+/[xys]/|^/social/nodeinfo_2_0"><br>CacheEnable disk<br>Header set Cache-Control "max-age=86400, public" "expr=%{REQUEST_STATUS} == 200"<br>ExpiresActive On<br>ExpiresDefault "access plus 86400 seconds"<br></LocationMatch><br></p>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.<br>Further reading and all options are explained under <a href="https://httpd.apache.org/docs/2.4/caching.html" rel="nofollow" class="ellipsis" title="httpd.apache.org/docs/2.4/caching.html"><span class="invisible">https://</span><span class="ellipsis">httpd.apache.org/docs/2.4/cach</span><span class="invisible">ing.html</span></a> (and ff)<br><br>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 😀 )<br><br><a href="/tags/fediverse/" rel="tag">#Fediverse</a> <a href="/tags/hosting/" rel="tag">#Hosting</a> <a href="/tags/itnotes/" rel="tag">#ITNotes</a> <a href="/tags/apache2/" rel="tag">#apache2</a> <a href="/tags/httpd/" rel="tag">#httpd</a> <a href="/tags/ownyourdata/" rel="tag">#Ownyourdata</a> <a href="/tags/server/" rel="tag">#Server</a> <a href="/tags/snac/" rel="tag">#Snac</a> <a href="/tags/snac2/" rel="tag">#Snac2</a> <a href="/tags/tipsandtricks/" rel="tag">#Tipsandtricks</a> <a href="/tags/tutorial/" rel="tag">#Tutorial</a> <a href="/tags/debian/" rel="tag">#Debian</a> <a href="/tags/caching/" rel="tag">#caching</a><br><img src="https://neodb.social/media/emoji/snikket.de/xmpp.png" class="emoji" alt=":xmpp:" title=":xmpp:"><br>
Edited 1y ago
<p><a href="https://fedihost.co" rel="nofollow"><span class="invisible">https://</span>fedihost.co</a> <a href="/tags/mastodon/" rel="tag">#Mastodon</a> instances have been updated to v4.3.9</p><p>Learn more about this release here:<br><a href="https://github.com/mastodon/mastodon/releases/tag/v4.3.9" rel="nofollow" class="ellipsis" title="github.com/mastodon/mastodon/releases/tag/v4.3.9"><span class="invisible">https://</span><span class="ellipsis">github.com/mastodon/mastodon/r</span><span class="invisible">eleases/tag/v4.3.9</span></a></p><p><a href="/tags/hosting/" rel="tag">#hosting</a> <a href="/tags/selfhosting/" rel="tag">#SelfHosting</a> <a href="/tags/getfederated/" rel="tag">#GetFederated</a> <a href="/tags/activitypub/" rel="tag">#ActivityPub</a> <a href="/tags/fediverse/" rel="tag">#Fediverse</a> <a href="/tags/fedihost/" rel="tag">#FediHost</a></p>
The old game consulting company I worked at and helped build the engineering team just took ownership of Unity's Multiplay game server hosting product. When I was there the CTO was the former-Multiplay architect and engineer. Such a small incestual world AAA gaming is.<br><br><a href="/tags/gaming/" rel="tag">#Gaming</a> <a href="/tags/gamedev/" rel="tag">#GameDev</a> <a href="/tags/hosting/" rel="tag">#Hosting</a><br>
I've been noodling on the idea of starting a non-profit hosting company within the US in a similar fashion that Codeberg operates its Forgejo hosting. Seems like there could be a lot of small to medium sized organizations that could benefit from this from not only a technical perspective, but a values perspective too.<br><br><a href="/tags/hosting/" rel="tag">#Hosting</a> <a href="/tags/nonprofit/" rel="tag">#NonProfit</a> <a href="/tags/501c3/" rel="tag">#501c3</a><br>
<p>All <a href="https://fedihost.co" rel="nofollow"><span class="invisible">https://</span>fedihost.co</a> <a href="/tags/mastodon/" rel="tag">#Mastodon</a> instances have been updated to v4.4.2</p><p>Thank you!</p><p>Learn more about this release here:<br><a href="https://github.com/mastodon/mastodon/releases/tag/v4.4.2" rel="nofollow" class="ellipsis" title="github.com/mastodon/mastodon/releases/tag/v4.4.2"><span class="invisible">https://</span><span class="ellipsis">github.com/mastodon/mastodon/r</span><span class="invisible">eleases/tag/v4.4.2</span></a></p><p><a href="/tags/hosting/" rel="tag">#hosting</a> <a href="/tags/selfhosting/" rel="tag">#SelfHosting</a> <a href="/tags/getfederated/" rel="tag">#GetFederated</a> <a href="/tags/fediverse/" rel="tag">#Fediverse</a> <a href="/tags/activitypub/" rel="tag">#ActivityPub</a></p>
<p>All <a href="https://fedihost.co" rel="nofollow"><span class="invisible">https://</span>fedihost.co</a> <a href="/tags/mastodon/" rel="tag">#Mastodon</a> instances have been updated to v4.4.3</p><p>This release contains some bug fixes and a small security patch.</p><p>Thank you!</p><p>Learn more about this release here:<br><a href="https://github.com/mastodon/mastodon/releases/tag/v4.4.3" rel="nofollow" class="ellipsis" title="github.com/mastodon/mastodon/releases/tag/v4.4.3"><span class="invisible">https://</span><span class="ellipsis">github.com/mastodon/mastodon/r</span><span class="invisible">eleases/tag/v4.4.3</span></a></p><p><a href="/tags/hosting/" rel="tag">#hosting</a> <a href="/tags/selfhosting/" rel="tag">#SelfHosting</a> <a href="/tags/getfederated/" rel="tag">#GetFederated</a> <a href="/tags/fediverse/" rel="tag">#Fediverse</a> <a href="/tags/activitypub/" rel="tag">#ActivityPub</a></p>
<p>Sooooo my recent mishaps with server administration are making me speed up my plans of shifting towards community-owned and -maintained hosting.</p><p>Ever since my conversation with <span class="h-card"><a href="https://cosocial.ca/@boris" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>boris</span></a></span> almost one year ago, I took his quote “self-hosting is selfish” as a mantra. It’s time to act accordingly.</p><p>Together with <span class="h-card"><a href="https://pan.rent/@Holly" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>Holly</span></a></span> and <span class="h-card"><a href="https://pan.rent/@youjungnoh" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>youjungnoh</span></a></span>, we are putting together a group of tech-savy people who want to, respectively:</p><p>Learn more about system administration<br>Get their hands dirty while doing so<br>Maintain our own shared server<br>Host their own things (be them websites, projects, or services) together with comrades instead of individual infrastructure.</p><p>There are many super cool collectives that are doing this already, and we intend to draw inspiration from their work and their documentation, but we really want to do this together!</p><p>Who wants to join? Please, do reach out! I already spun up a small-ish VPS that is now hosting all my static websites. If you’d like to get involved, reach out and I would be happy to give you SSH access 🌻</p><p>We would also be very grateful if more experienced sysAds want to help us out by hosting workshops or brief classes.</p><p>We intend to meet for the first time in South Holland (but maybe virtually too) sometime during the first two weeks of March.</p><p>Next steps:</p><p>Find a name for this group/server/mission<br>Plan a series of (free, open) intro lessons with guests<br>Start hosting some things<br>Migrate things I am already hosting with YunoHost in our community server<br>Migrate to a physical device in a home of ours?</p><p>EDIT: I forgot to add this, but it goes without saying that ours would be a queer and transfeminist server</p><p><a href="/tags/communityhosting/" rel="tag">#communityHosting</a> <a href="/tags/linux/" rel="tag">#Linux</a> <a href="/tags/sysad/" rel="tag">#sysAd</a> <a href="/tags/systemadministration/" rel="tag">#systemAdministration</a> <a href="/tags/selfhosting/" rel="tag">#selfHosting</a> <a href="/tags/yunohost/" rel="tag">#YunoHost</a> <a href="/tags/nginx/" rel="tag">#Nginx</a> <a href="/tags/hosting/" rel="tag">#hosting</a> <a href="/tags/server/" rel="tag">#server</a> <a href="/tags/vps/" rel="tag">#VPS</a></p>
Edited 48d ago
<p>All <a href="https://fedihost.co" rel="nofollow"><span class="invisible">https://</span>fedihost.co</a> <a href="/tags/mastodon/" rel="tag">#Mastodon</a> instances have been updated to v4.4.7</p><p>Thank you!</p><p>Learn more about this release here:<br><a href="https://github.com/mastodon/mastodon/releases/tag/v4.4.7" rel="nofollow" class="ellipsis" title="github.com/mastodon/mastodon/releases/tag/v4.4.7"><span class="invisible">https://</span><span class="ellipsis">github.com/mastodon/mastodon/r</span><span class="invisible">eleases/tag/v4.4.7</span></a></p><p><a href="/tags/hosting/" rel="tag">#hosting</a> <a href="/tags/selfhosting/" rel="tag">#SelfHosting</a> <a href="/tags/getfederated/" rel="tag">#GetFederated</a> <a href="/tags/fediverse/" rel="tag">#Fediverse</a> <a href="/tags/activitypub/" rel="tag">#ActivityPub</a></p>
<p>It's been a while!</p><p>All <a href="https://fedihost.co/" rel="nofollow"><span class="invisible">https://</span>fedihost.co/</a> <a href="/tags/peertube/" rel="tag">#PeerTube</a> instances have been upgraded to v7.3.0</p><p>Find out what's new in 7.3.0<br><a href="https://github.com/Chocobozzz/PeerTube/releases" rel="nofollow" class="ellipsis" title="github.com/Chocobozzz/PeerTube/releases"><span class="invisible">https://</span><span class="ellipsis">github.com/Chocobozzz/PeerTube</span><span class="invisible">/releases</span></a></p><p>ps: <a href="/tags/mastodon/" rel="tag">#Mastodon</a> v4.5.0 to follow shortly!</p><p><a href="/tags/hosting/" rel="tag">#hosting</a> <a href="/tags/selfhosting/" rel="tag">#SelfHosting</a> <a href="/tags/activitypub/" rel="tag">#ActivityPub</a> <a href="/tags/fediverse/" rel="tag">#Fediverse</a> <a href="/tags/canada/" rel="tag">#Canada</a></p>
<p>All <a href="https://fedihost.co" rel="nofollow"><span class="invisible">https://</span>fedihost.co</a> <a href="/tags/mastodon/" rel="tag">#Mastodon</a> instances have been updated to v4.5.0</p><p>Big new changes are the new quote posts and remote replies fetching.</p><p>Learn more about this release here:<br><a href="https://blog.joinmastodon.org/2025/11/mastodon-4.5/" rel="nofollow" class="ellipsis" title="blog.joinmastodon.org/2025/11/mastodon-4.5/"><span class="invisible">https://</span><span class="ellipsis">blog.joinmastodon.org/2025/11/</span><span class="invisible">mastodon-4.5/</span></a></p><p><a href="/tags/hosting/" rel="tag">#hosting</a> <a href="/tags/selfhosting/" rel="tag">#SelfHosting</a> <a href="/tags/getfederated/" rel="tag">#GetFederated</a> <a href="/tags/fediverse/" rel="tag">#Fediverse</a> <a href="/tags/activitypub/" rel="tag">#ActivityPub</a></p>
<p>Is anyone using <span class="h-card"><a href="https://uberspace.social/@ubernauten" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>ubernauten</span></a></span> for their hosting? This looks like such a cool idea but I'm just not sure I have the knowledge to make this work. I need a new hosting company and this looks like the one I should be supporting.<br><br><a href="/tags/webhosting/" rel="tag">#webhosting</a> <a href="/tags/hosting/" rel="tag">#hosting</a></p>
<p>If you want to use <a href="/tags/ghost/" rel="tag">#Ghost</a> and you want to support a European small business hosting service that hosts Ghost and has excellent support, Magic Pages has launched a new lifetime hosting plan. For $460 (EUR 390) you get a Ghost site hosted forever. </p><p>They’re an Austrian business using German servers (Hetzner). </p><p>They also have a monthly plan and an enterprise plan. </p><p><a href="https://www.magicpages.co/" rel="nofollow"><span class="invisible">https://</span>www.magicpages.co/</a></p><p><a href="/tags/ghost/" rel="tag">#Ghost</a> <a href="/tags/substack/" rel="tag">#Substack</a> <a href="/tags/hosting/" rel="tag">#Hosting</a> <a href="/tags/eu/" rel="tag">#EU</a></p>
Edited 35d ago