環境: Windows 10,Visual Studio 2017 centos 7,nginx,supervisor,dotnet core 1.1 問題: 在 Linux 配置 supervisor 時,如下命令運行項目會出現各種路徑問題,可能涉及一個 work dir 的概念;Windows ...
環境:
Windows 10,Visual Studio 2017
centos 7,nginx,supervisor,dotnet core 1.1
問題:
在 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"