Fix Socket Permissions #11
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix-socket-permissions"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fix socket ownership
The
.socketunit was creating the socket owned by root becauseDynamicUserallocates its user at service start, after the socket is already created.
Replaced
DynamicUserwith a staticvanhouzen-siteuser and group, and addedSocketUserandSocketGroupto the socket unit so ownership is assignedcorrectly at socket creation time.