Failed authorization procedure

root@LoadScreen:/etc/apache2/sites-enabled# grep -Ei 'include|optional' /etc/apache2
grep: /etc/apache2: Is a directory
root@LoadScreen:/etc/apache2/sites-enabled# grep -Eri 'include|optional' /etc/apache2
/etc/apache2/apache2.conf:# * ports.conf is always included from the main configuration file. It is
/etc/apache2/apache2.conf:# Include module configuration:
/etc/apache2/apache2.conf:IncludeOptional mods-enabled/.load
/etc/apache2/apache2.conf:IncludeOptional mods-enabled/
.conf
/etc/apache2/apache2.conf:# Include list of ports to listen on
/etc/apache2/apache2.conf:Include ports.conf
/etc/apache2/apache2.conf:# Include of directories ignores editors' and dpkg's backup files,
/etc/apache2/apache2.conf:# Include generic snippets of statements
/etc/apache2/apache2.conf:IncludeOptional conf-enabled/.conf
/etc/apache2/apache2.conf:# Include the virtual host configurations:
/etc/apache2/apache2.conf:IncludeOptional sites-enabled/
.conf
/etc/apache2/conf-available/security.conf:# Optionally add a line containing the server version and virtual host
/etc/apache2/conf-available/security.conf:# Set to "EMail" to also include a mailto: link to the ServerAdmin.
/etc/apache2/conf-available/localized-error-pages.conf:# includes to substitute the appropriate text.
/etc/apache2/conf-available/localized-error-pages.conf:#Alias /error/include/ "/your/include/path/"
/etc/apache2/conf-available/localized-error-pages.conf:# /usr/share/apache2/error/include/ files and copying them to /your/include/path/,
/etc/apache2/conf-available/localized-error-pages.conf:# even on a per-VirtualHost basis. If you include the Alias in the global server
/etc/apache2/conf-available/localized-error-pages.conf:# The default include files will display your Apache version number and your
/etc/apache2/conf-available/localized-error-pages.conf:# The internationalized error documents require mod_alias, mod_include
/etc/apache2/conf-available/localized-error-pages.conf:#
/etc/apache2/conf-available/localized-error-pages.conf:# Options IncludesNoExec
/etc/apache2/conf-available/localized-error-pages.conf:# AddOutputFilter Includes html
/etc/apache2/mods-available/reqtimeout.conf: # cause problem with ssl enabled virtual hosts: This timeout includes
/etc/apache2/mods-available/setenvif.conf: # a directory that does not include the trailing slash. This fixes a
/etc/apache2/mods-available/alias.conf: # Note that if you include a trailing / on fakename then the server will
/etc/apache2/mods-available/alias.conf: # We include the /icons/ alias for FancyIndexed directory listings. If
/etc/apache2/mods-available/include.load:LoadModule include_module /usr/lib/apache2/modules/mod_include.so
/etc/apache2/mods-available/userdir.conf: Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
/etc/apache2/mods-available/mime.conf: # For files that include their own HTTP headers:
/etc/apache2/mods-available/mime.conf: # To parse .shtml files for server-side includes (SSI):
/etc/apache2/mods-available/mime.conf: # (You will also need to add "Includes" to the "Options" directive.)
/etc/apache2/mods-available/mime.conf:
/etc/apache2/mods-available/mime.conf: AddOutputFilter INCLUDES .shtml
/etc/apache2/mods-available/proxy_html.conf:# code itself, and is instead read from httpd.conf (or included file)
/etc/apache2/mods-available/autoindex.conf: # and not include in the listing. Shell-style wildcarding is permitted.
/etc/apache2/magic:# Column #5: MIME encoding of result (optional)
/etc/apache2/sites-available/loadscreen.net-le-ssl.conf:Include /etc/letsencrypt/options-ssl-apache.conf
/etc/apache2/sites-available/default-ssl.conf: # include a line for only one particular virtual host. For example the
/etc/apache2/sites-available/default-ssl.conf: #Include conf-available/serve-cgi-bin.conf
/etc/apache2/sites-available/default-ssl.conf: # none, optional, require and optional_no_ca. Depth is a
/etc/apache2/sites-available/000-default.conf.dpkg-dist: # include a line for only one particular virtual host. For example the
/etc/apache2/sites-available/000-default.conf.dpkg-dist: #Include conf-available/serve-cgi-bin.conf

It’s worth noting that the main page works with https just fine, but articles and some other pages don’t work.

Managed to fix it by adding these lines:

<Directory /var/www/html/>
                AllowOverride All
        </Directory>

to my ssl virtual host file. Thank you both for your help.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.