Alias /softaculous /var/softwww
<Directory /var/softwww>
	# Apache 2.2
	<IfModule !mod_authz_core.c>
	Require all granted
	</IfModule>
	# Apache 2.4
	<IfModule mod_authz_core.c>
		Require all granted
	</IfModule>
	Options -MultiViews
    AddType application/x-httpd-php .php .php3 .php4 .phtml
	<IfModule mod_php7.c>
		# upload_tmp_dir /tmp
		# open_basedir /
		# include_path .:..
		# session.save_path /tmp
		# safe_mode off
	</IfModule>
	<IfModule mod_headers.c>
		Header set Content-Security-Policy "default-src *.softaculous.com 'self' 'unsafe-inline' 'unsafe-eval'; img-src *.softaculous.com 'self' data:; object-src 'none'"
	</IfModule>
    DirectoryIndex index.php
</Directory>
