Replies: 1 comment
-
I've modified SocketPath() as follows. Any thoughts? func (c Config) SocketPath() string { |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi
I'm trying to run kamal-proxy as a systemd service on Fedora 41.
I can run it on the command line and communicate with it from another command line fine. I can see it has created the socket /run/user/0/kamal-proxy.sock
If I start it using a systemd service file like:
[Unit]
Description=kamal-proxy service
After=NetworkManager.service
[Service]
Type=simple
User=root
Group=root
WorkingDirectory=/root
ExecStart=/usr/sbin/kamal-proxy run
The server starts and works until I try to issue command line commands where I get:
Error: dial unix /run/user/0/kamal-proxy.sock: connect: no such file or directory and it's true there is no kamal-proxy.sock
We are looking to migrate to rails 8 for our web apps but this makes it difficult to use kamal-proxy in our environment.
Any help would be appreciated
Many thanks
Kieran
Beta Was this translation helpful? Give feedback.
All reactions