@The Beave a unit is just the text file systemd uses to start your app, usually sitting in /etc/systemd/system/. run systemctl list-units -t service | grep -i hermes to get its name, then systemctl cat that name to print the file. if there is no EnvironmentFile line pointing at your .env, systemd never reads that file at all, and that is why your edits do nothing.
Login to reply