Nach dem erfolgreichen ersten Setup von rclone soll das Ganze nun automatisch auf einer Unraid-Instanz laufen, sprich: Ein lokaler Unraid-Server soll per Batch-Job eine im Netz laufende Nextcloud-Instanz spiegeln.
Continue reading “Howto: rclone unraid edition”Category: www
Howto: rclone mit Nextcloud-Remote
Auf dem Desktop-Rechner wird man normalerweise den Desktop-Synchronization-Client installieren. Doch was, wenn man headless auf dem Server arbeitet? Dafür bietet sich rclone an.
Continue reading “Howto: rclone mit Nextcloud-Remote”SWAG and WordPress in a subfolder
Desired setup
A SWAG reverse proxy should forward requests to WordPress running in the official wordpress docker image. The URL which is served by the reverse proxy is not the domain root, but a subfolder “blog”: https://www.example.com/blog.
What does not work
Letting the docker image itself serve wordpress in the root folder and write some clever proxy / rewrite rules. At first it seems to work, but when it comes wp-admin URLs like https://www.example.com/blog/wp-admin a magic redirection happens to https://www.example.com/wp-admin which points to outside the WordPress installation.
Fiddling around with RELOCATE
, WP_HOME
and WP_SITEURL
does not solve the problem.
As it turns out WordPress needs to know the fact that it is installed in a subfolder, quote:
Continue reading “SWAG and WordPress in a subfolder”What you’ll want to do is run your WordPress container with WORKDIR set to /var/www/html/lab so it knows it is in a subdirectory and acts accordingly.
Wie man http-Server unter Python mockt
Führt der eigene Code http-Calls aus, z.B. um Dateien von einem externen Server runterzuladen stellt sich die Frage nach der Testbarkeit. Idealerweise ist der Code so aufgebaut, daß er nicht direkt von einer http-Library abhängt und man entsprechende Calls mocken kann. Ist dies nicht einfach möglich, kann man den in der Standarlibrary eingebauten http.server
als localhost-Gegenstelle für Tests verwenden.
Homeassistant with Traefik and SSH
So the idea is to have a home router listen on port 443 for HTTPS and SSH connection simultanously, route HTTPS traffic to a local homeassistant instance and SSH traffic to a local SSH server:
Continue reading “Homeassistant with Traefik and SSH”