10-26-2019, 01:36 PM
The 403 Forbidden message comes from Apache. It is likely that your new mount is not exposed to Apache. Take a look at the tactic.conf file for Apache typically installed in /etc/httpd/conf.d folder. Apache is the service that serves files as it is much more efficent that Python so it must be configure to see your new folder.
You will see that the /assets path is mapped with an Alias to your old folder. Make it point to your new folder.
Alias /assets /mnt/tactic/assets
Also make sure that the folder is permitted with the configuration such as:
<Directory "/mnt/tactic" >
Options FollowSymLinks
AllowOverride All
Order Allow,Deny
Allow from All
# Apache 2.4
Require all granted
</Directory>
You will see that the /assets path is mapped with an Alias to your old folder. Make it point to your new folder.
Alias /assets /mnt/tactic/assets
Also make sure that the folder is permitted with the configuration such as:
<Directory "/mnt/tactic" >
Options FollowSymLinks
AllowOverride All
Order Allow,Deny
Allow from All
# Apache 2.4
Require all granted
</Directory>