I created a new package as apm_service and now I have to change it to apm_application in order to make the directory www/ acessible.
How do properly I update the package type.
I tried to use
SELECT apm_package_type__update_type (
'intranet-fs', -- package_key
null, -- pretty_name
null, -- pretty_plural
null, -- package_uri
'apm_application', -- package_type
null, -- initial_install_p
null, -- singleton_p
null, -- implements_subsite_p
null, -- inherit_templates_p
null, -- spec_file_path
null -- spec_file_mtime
);
The package_type was successfully updated but the www/ directory is still unaccessible
How do open www/ to the web
Cheers,