问题:
在 Linux 配置 supervisor 时,如下命令运行项目会出现各种路径问题,可能涉及一个 work dir 的概念;Windows 同样适用。
只能在项目的当前目录运行 dotnet 才可正常。
command=dotnet /home/wwwroot/www.automan.com/automan.dll
解决:
command=/bin/bash -c "cd /home/wwwroot/www.automan.com && dotnet automan.dll"
时间: 2024-10-16 15:42:06