Letsencrypt with Apache Reverse Proxy

Sample vhost configuration: <VirtualHost *:80> ServerName dos.archive.computer ServerAdmin webmaster@localhost ProxyPreserveHost On DocumentRoot /var/www/html/dos.archive.computer ProxyPass /.well-known ! ProxyPass / http://10.0.3.10/ ProxyPassReverse / http://10.0.3.10/ ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined #The below lines are just for auto-redirecting to https RewriteEngine on RewriteCond %{SERVER_NAME} =dos.archive.computer RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent] </VirtualHost> Create .well-known folder wget…