spirinolas

joined 2 years ago
[–] spirinolas@lemmy.world 3 points 4 days ago (1 children)

Israelis not respecting other people's property? I'm shocked.

[–] spirinolas@lemmy.world 1 points 4 days ago* (last edited 4 days ago)

Only three times?! Commie!

[–] spirinolas@lemmy.world 10 points 2 weeks ago

We know what went down and it wasn't prices.

[–] spirinolas@lemmy.world 5 points 2 weeks ago

We know, but we call it milk as a joke. It's not actually milk.

[–] spirinolas@lemmy.world 8 points 2 weeks ago

"Gee, ya think?"

[–] spirinolas@lemmy.world 11 points 2 weeks ago (4 children)

Diddling kids? No.

Playing Clinton's trumpet? Abso-fucking-lutely. It's the one and only thing that could actually ruin him among his base...as depressing as it is.

[–] spirinolas@lemmy.world 5 points 2 weeks ago

I actually had this conversation with a girl I was with. The "how funny it would be" conversation. Then we remembered this during sex and I started "yepping" and she laughed so much we had to stop. Eventually we got back into it and there was no more "yepping" and we both seemingly forgot it. Seemingly. When I was finishing I started going "brrrriiiinnggg". I'm an idiot.

[–] spirinolas@lemmy.world 1 points 2 weeks ago

You realize the planes have to fall somewhere...

[–] spirinolas@lemmy.world 2 points 3 weeks ago

Leave those two love birds be <3

[–] spirinolas@lemmy.world 10 points 1 month ago (2 children)

There are still lots of reasons that stop people from jumping 100% into Linux. Gaming is less and less one of them.

[–] spirinolas@lemmy.world 3 points 1 month ago* (last edited 1 month ago)

Just so you know, we're all counting on you.

[–] spirinolas@lemmy.world 16 points 1 month ago* (last edited 1 month ago)

Wow, so you could be awesome but still choose to be a dick. Some people are born dicks but you actually choose to be one. It makes it even worse.

 

I've tried GetHomepage and while I've configured most of it I've had a few troubles due to the instructions being very incomplete and confusing.

The one problem that eluded me was setting paperlessngx widget. Worth nothing that, unlike the other services, paperlessngx is running on docker-compose on my server. While the widget detects the service, it never gets any information

Eventually it just gives an API error

# services.yaml (just the relevant part)
   
     - Paperless-ngx:
        href: http://<myserverhost:port>
        description: Document Management System
        icon: https://static-00.iconduck.com/assets.00/paperless-icon-426x512-eoik3emb.png
        server: paperless
        widget:
          type: paperlessngx
          url: http://<local-ip:port>
          token: <token-configured-inside-paperless>


    #docker.yaml

    paperless:
      host: <local-ip>
      port: <port>    

I'm out of ideas. Unfortunately the only instructions are on the site and they aren't easy to follow if you're not already familiarized with docker.

 

Encontrado no IG no grupo de defesa da Palestina da UP:

"Desde outubro de 2023, mês em que começou a ter lugar a vigília diária em solidariedade com o povo palestiniano em frente ao edifício da Câmara Municipal do Porto, com o objetivo de exigir o fim do genocídio perpetrado por Israel contra o povo palestiniano, que as pessoas presentes têm sido alvo de atos de violência física e verbal. Desde então, temos sentido na pele a total impunidade com que operam grupos organizados que tentam aterrorizar e negar os direitos constitucionais de reunião e expressão.

Dia 14 de novembro, mais uma vez, um grupo de quatro homens que se apresentaram como israelitas, de forma completamente descontrolada, exaltada e agressiva, ofenderam e proferiram ameaças de agressão e morte contra as pessoas que participavam pacificamente na vigília, para além de terem orgulhosamente incentivado ao genocídio e à violência contra o povo palestiniano, em mais um crime de ódio racista que, pela sua repetição cada vez mais frequente e pela inércia das autoridades legais, está a tornar-se normalizado e banalizado no espaço público da cidade do Porto.

Estes atos de violência têm-se intensificado, com espaços de tempo cada vez menores entre eles, e no mesmo dia 14 de novembro de 2024 pessoas que portavam símbolos palestinianos (lenços e bandeiras) foram, durante a tarde, atacadas física e verbalmente numa via pública do Porto, tendo uma delas de ser tratada no hospital por lesões oculares resultantes do uso de gás pimenta por parte dos agressores."

 

I developed an app in Laravel that uses Google authentication, it works perfectly on my localhost. When I deployed it in my nginx server (ubuntu 24.04) I get the Google login correctly and it proceeds to my main page as expected. But after that, no route is accessible. All of them throw me a 404. I've been googling it for ages but I can't for the life of me find the solution for this.

EDIT: The 404 comes from Laravel, not nginx. The weird part is if I try php artisan route:list on the ser the routes are indeed missing but on the localhost they all show. The code is pretty much the same.

Here's is my app conf file:

server {
    server_name partituras-cmcgb.duckdns.org;
    root /var/www/html/partviewer/public;

    index index.php index.html index.htm;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/var/run/php/php8.3-fpm.sock;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

    location ~ /\.ht {
        deny all;
    }

    error_log /var/log/nginx/partviewer-error.log;
    access_log /var/log/nginx/partviewer-access.log;

    listen 443 ssl; # managed by Certbot
    ssl_certificate /etc/letsencrypt/live/partituras-cmcgb.duckdns.org/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/partituras-cmcgb.duckdns.org/privkey.pem; # managed by Certbot
    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot

}
server {
    if ($host = partituras-cmcgb.duckdns.org) {
        return 301 https://$host$request_uri;
    } # managed by Certbot


    listen 80;
    server_name partituras-cmcgb.duckdns.org;
    return 404; # managed by Certbot


}
view more: next ›