Created
April 29, 2018 12:26
-
-
Save azyobuzin/e67a268f2a4ab37c29e94880c60f350a to your computer and use it in GitHub Desktop.
イニシエの Upstart スクリプト
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
description "NuGetCalc Online" | |
start on runlevel [2345] | |
stop on runlevel [016] | |
chdir /home/azyobuzin/repo/NuGetCalcWeb/NuGetCalcWeb | |
env NUGETCALC_BASEURI=http://nugetcalc.azyobuzi.net/ | |
env NUGETCALC_ANALYTICS=http://junk.azyobuzi.net/nugetcalcweb/analytics.html | |
env NUGETCALC_AD="" | |
env MONO_PREFIX=/opt/mono-20150501052837 | |
exec $MONO_PREFIX/bin/mono \ | |
/home/azyobuzin/repo/MiniOwinHost/MiniOwinHost/bin/Release/MiniOwinHost.exe \ | |
http://localhost:63005/ \ | |
>> /var/log/nugetcalcweb.log | |
respawn |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
start on runlevel [2345] | |
stop on runlevel [016] | |
exec /home/azyobuzin/.dnx/runtimes/dnx-coreclr-linux-x64.1.0.0-rc1-update2/bin/dnx \ | |
-p /home/azyobuzin/repo/PollApi/src/PollApi/bin/output/approot/packages/PollApi/1.0.0/root \ | |
web \ | |
--server.urls http://localhost:63006/ \ | |
>> /var/log/twpollapi.log 2>&1 | |
respawn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment