Access Denied On sub folder

Hi, im currently making my own mirror for my ISO’s and scripts i already have the website ready but when i want to acces a folder i get this error


any idea why?

1 Like

Are you trying to access the folder or a file?

sorry for the late respond, im trying to acces a folder like test.test/scripts and then i get that error

This is because directory listing has turned off by default, for security reasons.

You can change this in the apache config.

<Directory /home/<user>/web/<domain>/public_html>
        AllowOverride All
        Options +Includes -Indexes +ExecCGI
    </Directory>

https://hestiacp.com/docs/server-administration/web-templates.html

More information on this option: Apache.org httpd docs DirectoryListings

How to enable directory listing on some web domain only? Do I need to make a template for it? If so, how? thanks