Categories:

Email
  🠪  Servers
  🠪  Testing
  🠪  Tips

Hardware
  🠪  3D Printing
  🠪  Apple
  🠪  Batteries
  🠪  Drives
  🠪  Edgerouter
  🠪  Electronics
  🠪  Laptop
  🠪  Modems
  🠪  Phone
  🠪  Printers
  🠪  Raspberry Pi
  🠪  Tablets
  🠪  Testing
  🠪  Virtualization

hidden
  🠪  General

Links
  🠪  Interesting
  🠪  Media

Network
  🠪  Data
  🠪  Testing
  🠪  VPN

Scripts
  🠪  Batch
  🠪  Linux
  🠪  Powershell

Servers
  🠪  Databases
  🠪  Misc
  🠪  Website

Software
  🠪  Other

Utilities
  🠪  Backup
  🠪  Fix Issues
  🠪  Recovery

Video
  🠪  Editing

Websites
  🠪  HTML
  🠪  Testing

Windows
  🠪  Adjustments
  🠪  Issues
  🠪  Remote Desktop
  🠪  Sercurity
  🠪  Slow
  🠪  Software
  🠪  Startup

Submit Entry
Airin's Notes

Category: Servers 🠪 Website
Let's Encrypt Auto Renewal
September 23, 2023

Example batch file to auto-renew Bitnami WAMP Let's Encrypt certificate.


@echo off

echo Time to update Website upload Lets Encrypt Certificate...

echo.
echo.
echo Renew certificate:
cd /d "C:\Bitnami\wampstack-7.4.10-0\letsencrypt"
C:\Bitnami\wampstack-7.4.10-0\letsencrypt\lego.exe --email="airin@airinscomputers.com" --domains="website.com" --accept-tos --http --http.port :81 --http.webroot="C:\Bitnami\wampstack-7.4.10-0\apache2\htdocs" renew

echo.
echo.
echo Copy certificates to Apache folder:
xcopy "C:\Bitnami\wampstack-7.4.10-0\letsencrypt\.lego\certificates\website.com.crt" "C:\Bitnami\wampstack-7.4.10-0\apache2\conf\*.*" /y
xcopy "C:\Bitnami\wampstack-7.4.10-0\letsencrypt\.lego\certificates\website.com.key" "C:\Bitnami\wampstack-7.4.10-0\apache2\conf\*.*" /y


echo.
echo.
echo Restarting Apache services...


sc stop wampstackApache
timeout 5
sc start wampstackApache

echo.
echo.
echo All Done renewing Certs!

timeout 60


Category: Servers 🠪 Website
Microsoft IIS
September 25, 2023

IIS Crypto is a free tool that gives administrators the ability to enable or disable protocols, ciphers, hashes and key exchange algorithms on Windows Server 2008, 2012, 2016 and 2019. It also lets you reorder SSL/TLS cipher suites offered by IIS, change advanced settings, implement Best Practices with a single click, create custom templates and test your website.
https://www.nartac.com/Products/IISCrypto


Category: Servers 🠪 Website
SSL/TLS Certificates
September 25, 2023

Cheap SSL/TLS Certificates @ cheapsslsecurity.com
https://cheapsslsecurity.com/sslbrands/comodo.html

Free SSL @ Let's Encrypt
https://letsencrypt.org/


Category: Servers 🠪 Website
WAMP SSL Certificates
September 17, 2023

Create/renew certificates using Bitnami WAMP
https://docs.bitnami.com/installer/infrastructure/wamp/administration/create-ssl-certificate-apache/

set OPENSSL_CONF=C:\Program Files\OpenSSL-Win64\bin\openssl.cfg
cd /d "C:\Program Files\OpenSSL-Win64\bin"
openssl genrsa -out C:/Bitnami/Temp/server.key 2048
openssl req -new -key C:/Bitnami/Temp/server.key -out C:/Bitnami/Temp/cert.csr

* Create cert

Download .crt file
Place .crt and .key file from Temp folder here:
C:\Bitnami\wampstack-versionnumb...<Too long, click to read the rest>





This site is meant to be used as a reference for myself, although others may find it useful. I use it to keep track of certain fixes, software, and other solutions which I may need while assisting customers. The page layout is pure HTML/CSS and is kept simple to optimize loading time and fast results.

Return to Airin's Computers