Sharing files over the Webserver
Problem 1:

Cannot Upload many files at once or files over 1GB.

Disable Module:

    sudo a2dismod reqtimeout

Modify:

/etc/php/8.1/apache2/php.ini

default_socket_timeout = 120

 


Problem 2:

Cannot access Folder without Login


.htaccess 

https://httpd.apache.org/docs/2.4/mod/core.html#options

This Option makes sure that directory listings are disabled.

<IfModule mod_autoindex.c>

    Options -Indexes

</IfModule>

 

Including a index.php will make a access to the folder possible