Wednesday, December 13, 2023

PL2303 usb-to-serial

For some reason this pl2303 won’t even work on linux and thus requires Windows.
Even then, you need this fix anno 2023.

Monday, July 31, 2023

Build specific php-apache docker image

So I don’t forget:

FROM php:8.0.29-apache
# Update and install my default tools
RUN apt-get update
RUN apt dist-upgrade -y
RUN apt-get install -y nano curl wget openssh-client net-tools
# Enable RemoteIPHeader for Cloudflare Tunnels
RUN a2enmod remoteip 
RUN sed -i 's/DocumentRoot \/var\/www\/html/DocumentRoot \/var\/www\/html\n\tRemoteIPHeader CF-Connecting-IP/g' /etc/apache2/sites-enabled/000-default.conf
# Set timezone
RUN ln -fs /usr/share/zoneinfo/Europe/Amsterdam /etc/localtime
RUN dpkg-reconfigure --frontend noninteractive tzdata