Secure Nginx with SSL

Step 1 — Installing Certbot sudo apt-get install certbot python3-certbot-nginx Step 2 — Obtaining an SSL Certificate sudo certbot –nginx -d example.com -d www.example.com Step 3 — Updating Diffie-Hellman (Optional) sudo openssl dhparam -out /etc/ssl/certs/dhparam.pem 2048 (more secure but takes a bit longer) editor /etc/nginx/sites-available/default replace /etc/letsencrypt/ssl-dhparams.pem with your generated /etc/ssl/certs/dhparam.pem   Step 4 — Remove weiterlesen…

Fix Network Issues on Win10

Wenn die WLAN Verbindung langsam ist hilft möglicherweiße ein Treiber Update über die Bereitgestellte INI der Herstellerwebseite der Netzwerkkarte, Gerade nach neuen Windows Updates liegen Treiber noch nicht beim Notebookhersteller vor. Oft liegen diese auch nur als INI Datei vor und müssen über den Gerätemanager Upgedated werden. Wenn Webseiten nicht richtig geladen werden, z.B. Bilder weiterlesen…

Bitcoin the earth-destroyer burn 3 million liters of oil per day

The analysts website Digiconomist estimates the annual energy consumption for bitcoins at around 32 terawatt hours (TWh). The Bitcoin ranks in the same league as smaller states. We are talking about 100-kilowatt hours (kWh) per transaction. The reason for this is the SHA-256 Algorithms. For comparison, 1 liter of oil ≈ 1m³ of gas ≈ weiterlesen…

SSH Private-Public Key between Windows & Linux Machine

1. Generate the Key ======================================================Windows:1. Start PuTTYgen on Windows Press Generate and Move over the Randomizer Field======================================================Linux:1. Open the OpenSSH key with the command:> ssh-keygen -b 4096======================================================2. Save public and private key to the disk 3. open authorized_keys on the remote machine> sudo nano ~/.ssh/authorized_keys past the public key:=====================================================ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAg3jaKHicRktxHfik/9HQGgTOVk6ZfqnfizeP0n7Qyd3w//dxjEbS3vdby04FOCSyMnjcvcDd3Y/kC5ioGOuljbYzzl9kypYdvX1MGLk/k3n7PVORhatFr1T02SzcXSXBl6CFAk0KqlaC0BLLBRSLNhTU/Q01uuvDtm14fkHwQn+MZ+vTV+AeTv7daBRi6loHge0BemggwWV9BGcJihz6Fm55mEAWiGXGi4JpRlhFkZIaqwmUx5TyMLft5D0xp04K5aDHN2tkhcfNffV9bWs31yYV4L2sdb2lHTtHU5tomcfdN3PGEANzQDEiTjGSCgz/OQ11EW6eHlDUwdoZQsNpKQ== rsa-key-20190609======================================================WindowsIn putty you have to weiterlesen…