Directory not Found in Debian Apache
Some SSL Certs needs to validate through a text file served in apache. Something like: http://example.org/.well-known/pki-validation/F70E08C160E9B8C7GB488B8AEB246D11B.txt
Solution: Add similar configuration in the virtualhost file in apache:
1Alias /.well-known/pki-validation/ /var/www/sites/example.org/.well-known/pki-validation/
2<Directory "/var/html/example.org/.well-known/pki-validation">
3 Order allow,deny
4 Allow from all
5 Satisfy all
6</Directory>