foremanguy92_

joined 2 years ago
[–] foremanguy92_@lemmy.ml 7 points 7 hours ago

I'm not against hypervisor cracks, indeed if they are correctly integrated and faked at an user level that's great! But if like on windows it requires even more privileges that's a no go and need some work

Keep fighting, Denuvo will fall!

[–] foremanguy92_@lemmy.ml 66 points 8 hours ago (5 children)

Continue publishing app freely, do not verify yourself

Fuck google

[–] foremanguy92_@lemmy.ml 4 points 1 week ago

Ente is a pain to setup, was never meant to be selfhostable correctly

[–] foremanguy92_@lemmy.ml 4 points 1 week ago
  1. You need port forwarding and hosting a reverse proxy into your infrastructure
  2. You shouldn't really worry about DNS in that case, only make sure you're domain resolve to the right IP
  3. As I said in 1. you will have to port forward to get access from outside (maybe you want to setup fail2ban on the reverse proxy to limit a bit spam)
  4. Reverse-proxy. No, you own a part of the domain so all the subdomain are belonging to you as well. Ex. When you buy test.com you don't buy the com domain but you buy media.test.com for example
[–] foremanguy92_@lemmy.ml 3 points 2 weeks ago

That's the second time proton messed up, the first time was unclear position from the CEO about trump and far right

[–] foremanguy92_@lemmy.ml 17 points 2 weeks ago (11 children)

What the fuck did I just see?? Mullvad after Proton.. So sad.. :(

[–] foremanguy92_@lemmy.ml 12 points 3 weeks ago (1 children)

Double tap and drag Or click the arrow to rotate it in the first place

[–] foremanguy92_@lemmy.ml 3 points 4 weeks ago* (last edited 4 weeks ago)

How could this idea come to mind.. Surely that's great, but who in the team said "Give me a price! 500!! Approved!"

[–] foremanguy92_@lemmy.ml 2 points 4 weeks ago

Look in your city for a local shop, they would surely be really happy to realize your print

[–] foremanguy92_@lemmy.ml 2 points 1 month ago

Even if it doesn't affect it directly Vaultwarden is strongly linked to Bitwarden, for example I think you're using official clients on your devices, Vaultwarden is not self sustainable (for now)

[–] foremanguy92_@lemmy.ml 11 points 2 months ago (2 children)

How are you creating google account without phone number

[–] foremanguy92_@lemmy.ml 2 points 2 months ago

I think that this could be a reaction, human brain is meant to at least consider every human like words

Ai is based on humans, so when you're really out of luck or desperate, this is in my opinion really hard not to fall into the trap

 

Am I the only one here that got really bad experience with nextcloud and didn't figured how to make it work correctly?

I'm talking about painfully slow login pages, ages to show files, even upgraded hardware with disk entirely capable of saturing full gig network connection and still...
Getting only about ~30ish MB/s when downloading from nextcloud.
Incredly slow document loading with collabora..

Even if my hardware is not new-gen, a app like immich works flawlessly and loads everything instantly.
Is it the fault of next cloud or am I doing something wrong?
Are alternatives like seafile or openCloud better?

Willing your help fellow selfhosters

1
submitted 10 months ago* (last edited 10 months ago) by foremanguy92_@lemmy.ml to c/piracy@lemmy.dbzer0.com
 

Hey pirates, Currently wants to download an iso of the vwlc of Cisco, to use it with my wifi APs.

I know that the 8.5 version is available for free (for 60days) on cisco[dot]com. But even with that I can't download it, their website is just crap.

So does someone know a way to download a vWLC ISO + how can I bypass the 60days trials.

(I've seen many guys talking about this on the internet but couldn't figure out where)

Thank you fellow sailors

EDIT : typos

 

SOLVED Will use the DNS server with custom local domain and firewall rules after

Hey fellow selfhosters! Hope you're doing well, today I would like to have some help to know how I could make this project a reality. So I would like to give to friends and family a VPN access to my homelab (probably with Wireguard).

I also have a VPS in the cloud and I can VPN to it to anonimize outgoing connections.

So basically in the case that a friend ask a local service I want the request to come to my home with his VPN connection and then comeback directly from my home.

In the case that a friend request google[dot]com I want the request to come to my house and then go trough the VPS to make the request from it and not from my home. Then comeback from google to the VPS to my home to the client.

The principal issue I have is how can I route my services directly trough my home without going into the regular WWW, but make all other requests to go trough the VPS and to the WWW

If you need some more explanations or infos, feel free to ask.

PS : I also self host PiHole so all the DNS requests should go trough it (and maybe I could use it to route requests where I want by tweaking my domain request to local IPs?)

diagramm of the network

 

I found about Usenet and the sort of "hype" relative to it and I wonder some stuff.

Maybe I'm a bit old school but is this process not against the spirit of piracy,

  • be generous to share
  • fight against censorship and DCMA takedown
  • work in a decentralized way

Just wondered it, if someone wants to give his opinion

 

Hello, I want to install searxng without using Docker on my homeserver so I basically run the install script from the official documentation. Already tried to use the automatic script for setting up apache and it basically worked by exposing /searxng. But I would like to do something simpler as I like that apache would only expose localhost:80 (for example) to use a reverse proxy later to point to it. Just wondering how this configuration work and how I could do something that applicates to my use case :

# -*- coding: utf-8; mode: apache -*-

LoadModule ssl_module           /mod_ssl.so
LoadModule headers_module       /mod_headers.so
LoadModule proxy_module         /mod_proxy.so
LoadModule proxy_uwsgi_module   /mod_proxy_uwsgi.so
# LoadModule setenvif_module      /mod_setenvif.so
#
# SetEnvIf Request_URI /searxng dontlog
# CustomLog /dev/null combined env=dontlog

<Location /searxng>

    Require all granted
    Order deny,allow
    Deny from all
    # Allow from fd00::/8 192.168.0.0/16 fe80::/10 127.0.0.0/8 ::1
    Allow from all

    # add the trailing slash
    RedirectMatch  308 /searxng$ /searxng/

    ProxyPreserveHost On
    ProxyPass unix:/usr/local/searxng/run/socket|uwsgi://uwsgi-uds-searxng/

    # see flaskfix.py
    RequestHeader set X-Scheme %{REQUEST_SCHEME}s
    RequestHeader set X-Script-Name /searxng

    # see limiter.py
    RequestHeader set X-Real-IP %{REMOTE_ADDR}s
    RequestHeader append X-Forwarded-For %{REMOTE_ADDR}s

</Location>

# uWSGI serves the static files and in settings.yml we use::
#
#   ui:
#     static_use_hash: true
#
# Alias /searxng/static/ /usr/local/searxng/searxng-src/searx/static/

Any help here? Thank you very much

 

This is again a big win on the red team at least for me. They developed a "fully open" 3B parameters model family trained from scratch on AMD Instinct™ MI300X GPUs.

AMD is excited to announce Instella, a family of fully open state-of-the-art 3-billion-parameter language models (LMs) [...]. Instella models outperform existing fully open models of similar sizes and achieve competitive performance compared to state-of-the-art open-weight models such as Llama-3.2-3B, Gemma-2-2B, and Qwen-2.5-3B [...].

As shown in this image (https://rocm.blogs.amd.com/_images/scaling_perf_instruct.png) this model outperforms current other "fully open" models, coming next to open weight only models.

A step further, thank you AMD.

PS : not doing AMD propaganda but thanks them to help and contribute to the Open Source World.

2
submitted 2 years ago* (last edited 2 years ago) by foremanguy92_@lemmy.ml to c/selfhosted@lemmy.world
 

Hello! 😀
I want to share my thoughts on docker and maybe discuss about it!
Since some months I started my homelab and as any good "homelabing guy" I absolutely loved using docker. Simple to deploy and everything. Sadly these days my mind is changing... I recently switch to lxc containers to make easier backup and the xperience is pretty great, the only downside is that not every software is available natively outside of docker 🙃
But I switch to have more control too as docker can be difficult to set up some stuff that the devs don't really planned to.
So here's my thoughts and slowly I'm going to leave docker for more old-school way of hosting services. Don't get me wrong docker is awesome in some use cases, the main are that is really portable and simple to deploy no hundreds dependencies, etc. And by this I think I really found how docker could be useful, not for every single homelabing setup, and it's not my case.

Maybe I'm doing something wrong but I let you talk about it in the comments, thx.

 

Hello, have setup my proxmox server since some weeks recently I found that LXC containers could be useful as it really separate all my services in differents containers. Since then I figured out to move my docker's services from a vm into several LXC containers. I ran into some issues, the first one is that a lot of projects run smoother in docker and doesn't really have a "normal" way of being package... The second thing is related to the first one, since they are not really well implemented into the OS how can I make the updates?
So I wonder how people are deploying their stuffs on LXC proxmox's containers?
Thanks for your help!

EDIT : Tried to install docker upon debian LXC but the performances were absolutely terrible...

 

I just install a complete new Drupal install in a Debian VM inside proxmox, everything works as intended, but I cannot add content to it(it gives me a 500 error).

Apache logs show me that the memory is exhausted, search online, no real answer, tried a lot of thing in PHP.ini, .htaccess… At first the VM had 1 vcpu and 1GB of RAM, not working, I’ve put the PHP memory limit to 1GB, give 8GB to the vm, and 4vcpu. Not working, just “loading” the 500 longer.

Error got into /var/log/apache2/error.log : PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 262144 bytes)) in Unknown on line 0. This is why I give the vm 8GB and change php memory_limit to 1GB but it did nothing…

Have no solutions, as now. If you have one please let me know! thanks 🙂

 

I just start using my homelab to host some new good services, and I want to know what is the approach of a docker setup, what is the best distro for? How to deploy them correctly? Basically I'm a real noob in this subject. Thank you

-1
submitted 2 years ago* (last edited 2 years ago) by foremanguy92_@lemmy.ml to c/selfhosted@lemmy.world
 

As the title what is the best file sharing service than can be self-hostable? Need encryption

EDIT : To be more precise I want something as an alternative to Wetransfer not Google Drive, something to get a link to dl files

 

Hey, I've setup a promox server and running some stuffs in it, and basically I want to know how to have alerts notifications that goes from one service to another, for example : I'm running NUT on proxmox shell, and I want to have an alert in Truenas (and in NextCloud running in Truenas) to say that the server will shutdown soon to the users that are actually using my cloud. Thank you 😄

view more: next ›