Linux – compile Keepassx

Tutorial: Compile Keepassx under Ubuntu Linux In the current apt sources there is just the version 1 available. When you compile the tarball manually you’ll get the newest version 2. Download Source code: https://www.keepassx.org/downloads/ tar xfv keepassx-2.0.2.tar.gz cd keepassx-2.0.2/ mkdir build cd

Linux – compile Keepassx Weiterlesen »

Raspberry Pi – Luftfeuchtigkeit/Temperatur messen (Sensor)

Hier eine Anleitung um die DHT22/AM2302 Luftfeuchtigkeits– und Temperatursensoren am Raspberry Pi auszulesen. Temperaturanzeige in Grafana Hardware Verkabelung am Raspberry Pi Hier die Verkabelung des Luftfeuchtigkeits-/Temperatursensors am Raspberry Pi. Der Widerstand ist hierbei 4,7 Kiloohm. Software apt-get install git-core git

Raspberry Pi – Luftfeuchtigkeit/Temperatur messen (Sensor) Weiterlesen »

apache2 – reverse proxy configuration file

Configuration of a reverse proxy from the apache2 webserver to another webserver / website: a2enmod proxy a2enmod proxy_http nano /etc/apache2/sites-available/000-default.conf <VirtualHost *:80>         ProxyPreserveHost On         ProxyPass / http://192.168.2.132:3000/         ErrorLog ${APACHE_LOG_DIR}/error.log         CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost>

apache2 – reverse proxy configuration file Weiterlesen »

Nach oben scrollen