From 891f0399f175cedc02642392227bb1aeaf762761 Mon Sep 17 00:00:00 2001 From: Wayne Koorts Date: Sat, 16 Jul 2016 08:01:13 +1200 Subject: [PATCH] Fix broken supervisor configuration. (#1646) --- aspnet/publishing/linuxproduction.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aspnet/publishing/linuxproduction.rst b/aspnet/publishing/linuxproduction.rst index c1b4b9111e..8a440b083d 100644 --- a/aspnet/publishing/linuxproduction.rst +++ b/aspnet/publishing/linuxproduction.rst @@ -115,7 +115,8 @@ To have supervisor monitor our application, we will add a file to the ``/etc/sup :caption: /etc/supervisor/conf.d/hellomvc.conf [program:hellomvc] - command=bash /usr/bin/dotnet /var/aspnetcore/HelloMVC/HelloMVC.dll + command=/usr/bin/dotnet /var/aspnetcore/HelloMVC/HelloMVC.dll + directory=/var/aspnetcore/HelloMVC/ autostart=true autorestart=true stderr_logfile=/var/log/hellomvc.err.log