Hello,
At the bottom of your deploy-pub/playbooks/archivematica-noble/vars-singlenode-1.18.yml file change this:
archivematica_src_ss_environment:
SS_DB_URL: "mysql://{{ archivematica_src_ss_db_user }}:{{ archivematica_src_ss_db_password }}@{{ archivematica_src_ss_db_host }}:3306/{{ archivematica_src_ss_db_name }}"
To look like this:
archivematica_src_ss_environment:
SS_DB_URL: "mysql://{{ archivematica_src_ss_db_user }}:{{ archivematica_src_ss_db_password }}@{{ archivematica_src_ss_db_host }}:3306/{{ archivematica_src_ss_db_name }}"
SESSION_COOKIE_SECURE: false
CSRF_COOKIE_SECURE: false
archivematica_src_am_dashboard_environment:
ARCHIVEMATICA_DASHBOARD_DASHBOARD_SESSION_COOKIE_SECURE: false
ARCHIVEMATICA_DASHBOARD_DASHBOARD_CSRF_COOKIE_SECURE: falseThis disables secure cookies in the Storage Service by setting the SESSION_COOKIE_SECURE and CSRF_COOKIE_SECURE keys to false in the archivematica_src_ss_environment dictionary variable, and adds the archivematica_src_am_dashboard_environment dictionary to do the same in the Dashboard.
After making these changes in the
deploy-pub/playbooks/archivematica-noble/vars-singlenode-1.18.yml file, run the
vagrant provision command to update your server configuration like this:
cd deploy-pub/playbooks/archivematica-noble
ANSIBLE_ARGS="--tags=archivematica-src" vagrant provision
After this command finishes you should not see the cookie error anymore.
Hope this helps.