Apache2 "localhost" works but for 127.0.0.1 I get "This site can’t be reached refused to connect". SSL also returns authorization error – Debian
I am trying to run an apache2 under docker (WSL2) with a self-signing certification to test SSL. The docker file script looks like this FROM php:7.1-apache RUN apt-get update && apt-get install -y zlib1g-dev COPY ./certs/* /etc/apache2/ssl/ COPY dev.conf /etc/apache2/sites-enabled/dev.conf…