Looking back

Looking back, I feel the current point in time is like the beginning of a new chapter.
I was very hurt and angry since my Ex cheated on me in 2010 and that created a lot of pain and unusual behavior which lead to mostly bad things happening in my life.

I’m not saying everything is different, but things have changed.

I feel like I’m slowly getting my inner balance back.

Secure OBS Websocket with nginx

The OBS websocket developer has a pretty weird point of view regarding listening on private network addresses vs the current state of it listening on a public IP or IPs.
What OBS websocket currently does is listening on 0.0.0.0 which is an alias for all available IP addresses.
But if you’re controlling OBS via Websocket from the outside, it’s no one’s business what you do there.

I will explain how to turn the ws:0.0.0.0:4455 into a wss:domain.tld:443 .

It’s very simple. You need to have nginx installed and somewhere “production ready” configured.
You probably have your config files in /etc/nginx/conf.d or similar.
Create a vhost there.

server {
        listen 80;
        listen [::]:80;
        server_name domain.tld;
        include /etc/nginx/acme.conf;
        error_log /var/log/nginx/domain.tld.error.log;
        access_log /var/log/nginx/domain.tld.access.log;
        location / {
                return 301 https://domain.tld$request_uri;
        }
}

server {
        listen 443 ssl;
        listen [::]:443 ssl;
        http2 on;

        server_name domain.tld;

        ssl_certificate /etc/letsencrypt/live/domain.tld/fullchain.pem;
        ssl_certificate_key /etc/letsencrypt/live/domain.tld/privkey.pem;

        error_log /var/log/nginx/domain.tld.error.log;
        access_log /var/log/nginx/domain.tld.access.log;

        location / {
                proxy_pass http://127.0.0.1:4455;
                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection "Upgrade";
                proxy_set_header Host $host;
                proxy_read_timeout 10;
                proxy_connect_timeout 10;
                proxy_redirect off;
        }
}

save it as /etc/nginx/conf.d/domain.tld.conf

Replace all instances of domain.tld with your domain and/or subdomain combination/name.

/etc/nginx/acme.conf

location /.well-known {
        alias /var/www/acme/.well-known;

        location ~ /.well-known/(.*) {
                default_type text/plain;
        }
}
mkdir -p /var/www/acme/.well-known
chown nginx:nginx /var/www/acme/.well-known

request a new certificate from letsencrypt

certbot certonly -d domain.tld -w /var/www/acme/ --webroot

and restart nginx

systemctl restart nginx

If you can’t generate a certificate, or nginx fails to start,
comment everything in the 2nd server block, aka add a # at the beginning of each line there, restart nginx, request a cert, uncomment again, restart nginx.

Connect to OBS websocket via wss://domain.tld:443

Ideally you would have a firewall on your obs server, but this is out of scope.# of this post.

Any questions, comments are below.

Disable AggregatorHost.exe

What is AggregatorHost.exe? I don’t know, but I know how to disable it.

Right click on your taskbar, select Task Manager, go to Services, Open Services, find “Connected User Experience and Telemetry”, right click -> Properties, set Startup Type to Disabled and under Service status press the “Stop” button.

Done and done.

Ist in Teinacher Mineralwasser Zucker drin?

Ich bin Diabetiker, wie ich neulich erfahren musste.
Ich trinke täglich Teinacher Mineralwasser Medium aus der Plastikflasche, bzw aus dem Trinkglas.

Es ist nicht das erste mal, daß ich einen Zuckergeschmack im Mund habe, nachdem ich etwas von dem Wasser getrunken habe. Das Wasser schmeckt süßlich im Nachgeschmack.

Jetzt weiß ich nicht, liegt es an mir, weil ich Zucker im Organismus habe und durch das Wasser der Geschmack hervorsticht, oder liegt es daran, daß Zucker im Teinacher Mineralwasser ist?

Ich würde ja gerne Feedback von anderen lesen, ob das bei Ihnen auch so ist, mit oder ohne Diabetes.

Flixbus Innenansicht?

Warum gibt es eigentlich keine Bilder oder Videos von Flixbus Bussen von Innen?

Nicht auf flixbus.de, nicht mal auf Youtube, aber ganz viele Videos von Fahrsimulationsspielen mit dem Wort Flixbus im Titel, welche die Suchergebnisse zuspammen.

Für meine Mutter habe ich Bilder gesucht. Die Wahl ist von Göppingen nach Ulm und von Ulm nach Böfingen und von dort mit Flixbus nach Rijeka oder mit der Bahn von Göppingen nach Celje in Slowenien und von dort nach 3 Stunden nach Pivka und dort wieder umsteigen nach Rijeka. 18 Stunden, eher 19. Für eine 90jährige.
Oder halt 2 Stunden nach Ulm mit Wartezeit und von dort 10 Stunden.

Macht doch mal Bilder und Videos.