spirinolas

joined 2 years ago
[–] spirinolas@lemmy.world 3 points 1 day ago* (last edited 1 day ago)

To be honest, I'm not even sure they could invade. Iran is a lot larger, more populated and more defensible than Iraq or Afghanistan. Saddam (with US support) found it the hard way in the 80s.

Not to mention they can easily receive materiel support from Russia. It would be a major clusterfuck for the US. I don't think even Trump is that stupid.

[–] spirinolas@lemmy.world 48 points 1 week ago (1 children)

We need to call this the Pedophile War

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

Um dia seremos meia centena!

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

This guy has ruined satire news...

[–] spirinolas@lemmy.world 4 points 1 month ago

I thought she was smarter than this...

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

He CAN take it far easier than Maduro. But the consequences would be far greater and it would be much harder to hold it.

[–] spirinolas@lemmy.world 63 points 3 months ago

For people that haven't followed this genocide for decades, this is outrageous and a clear violation of human rights. For the ones who have...it's Tuesday.

[–] spirinolas@lemmy.world 8 points 3 months ago

"Gee, ya think?"

[–] spirinolas@lemmy.world 30 points 5 months ago (1 children)

There you go, Trump. There's your 51st state.

[–] spirinolas@lemmy.world 1 points 5 months ago

Not even Trump would be that stupid. That would be a complete detonation of any diplomatic agreement. The moment they'd do that, any US diplomat or representative in the world would become fair game to imprison.

[–] spirinolas@lemmy.world 23 points 5 months ago

Holy shit, they killed Charlie Kirk??!

I never even considered Israel could be responsible. Very nice of Netanyahu to clear that up.

 

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.

 

When I'm uploading a show to my server, or setting the subtitles or whatever, I'd like to have the show disabled and invisible to everyone until I have everything uploaded and set up at 100%. Is there a way to do this?

 

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 ›