Using encryption in a LAN (not the Internet) Anon 06/26/2024 (Wed) 20:57 No.10563 del
>>10545
>>10547
>wbm not working very well
This error specifically (also happening today):
>A snapshot was captured. Visit page: /web/20240626203052/https://... \ There was a delay in registering this snapshot with the Wayback Machine. \ The snapshot may not be available right now, please try again later.
and that snapshot only shows up hours/days later. This problem makes using a LAN (plus software and hardware) as a partial replacement for Wayback Machine even more relevant. I followed this guide https://invidious.private.coffee/watch?v=7KHEmFJv4VE but used it for Linux. Apache HTTP Server on Windows is "way different", but I think I still made some progress. This should allow me to use HTTPS on local IP addresses and localhost:
>$ echo -e "\nServerName localhost" >> /etc/apache2/apache2.conf # fixed "[time name] apachectl[3353407]: AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message"
>$ openssl --help # OpenSSL help
>$ openssl [cmd] --help # OpenSSL subcommand help, e.g., "openssl req --help"
>$ openssl rsa --help 2>&1 | grep text
Make a crappy RSA SSL certificate and key:
>$ cd /etc/apache2/conf-enabled; sudo openssl req -x509 -nodes -days 1095 -newkey rsa:2048 -out server.crt -keyout server.key # you can leave the last or all fields blank
Enable SSL module(s) and socache mod by doing this I guess:
>$ sudo mv -n /etc/apache2/mods-available/ssl.load /etc/apache2/mods-enabled/
>$ sudo mv -n /etc/apache2/mods-available/ssl.conf /etc/apache2/mods-enabled/
>$ sudo mv -n /etc/apache2/mods-available/socache_shmcb.load /etc/apache2/mods-enabled/
Something about "httpd-ssl.conf" (only applies to Windows? which I'm not using). In "/etc/apache2/sites-available/default-ssl.conf", add/edit:

Message too long. Click here to view full text.