mirror of
https://github.com/willnorris/imageproxy.git
synced 2024-12-16 21:56:43 -05:00
14 lines
365 B
Text
14 lines
365 B
Text
|
# This is the upstart config I use for s.wjn.me.
|
||
|
description "Image Proxy server"
|
||
|
author "Will Norris <will@willnorris.com>"
|
||
|
|
||
|
start on (net-device-up)
|
||
|
stop on runlevel [!2345]
|
||
|
|
||
|
respawn
|
||
|
exec /usr/bin/imageproxy \
|
||
|
-addr localhost:8001 \
|
||
|
-log_dir /var/log/imageproxy \
|
||
|
-cacheDir /var/cache/imageproxy \
|
||
|
-whitelist willnorris.com,notsoserendipitous.com
|