The following address is the absolute path to the files on the hosting:
/data/u/u/uuid/domena.tld/
Main website is located in the directory /web, or directory /sub if the website is at subdomains
/data/web/nazovdomeny.tld/web
If you need to get the absolute path, you can obtain it with a function cwd(), ie. for example with a simple script (place the code into the new .php file and call it from the browser)
<?php
$path = dirname(__FILE__);
echo “Absolute path is: “;
echo $path;
?>