I've searched high and low for some tips on running Supervisord on a Unix
domain socket behind Nginx but I can seem to find anything to help me
resolve the problem I'm currently facing.
According to what I've seen running with the following Nginx configuration
should work:
server {
listen 8080;
server_name supervisor;
location / {
proxy_pass http://unix:/home/www/supervisor/supervisord.sock:/;
#proxy_pass http://127.0.0.1:9001/;
}
}
But I get the following back:
<head>
<title>Error response</title>
</head>
<body>
<h1>Error response</h1>
<p>Error code 500.
<p>Message: Internal Server Error.
</body>
Not sure where it's coming from.
The permissions on my sockets are right, and when I run supervisord with the
'inet_http_server' settings it works fine.
Any tips would be apreciated. Thanks
_______________________________________________
Supervisor-users mailing list
[email protected]
http://lists.supervisord.org/mailman/listinfo/supervisor-users