mirror of
https://github.com/willnorris/imageproxy.git
synced 2024-12-16 21:56:43 -05:00
finish renaming remoteHosts to allowHosts
This commit is contained in:
parent
6cb27fcbbc
commit
127a621c8a
4 changed files with 6 additions and 6 deletions
|
@ -186,12 +186,12 @@ specify multiple hosts as a comma separated list, or prefix a host value with
|
|||
### Allowed Hosts List ###
|
||||
|
||||
You can limit the remote hosts that the proxy will fetch images from using the
|
||||
`remoteHosts` flag. This is useful, for example, for locking the proxy down to
|
||||
`allowHosts` flag. This is useful, for example, for locking the proxy down to
|
||||
your own hosts to prevent others from abusing it. Of course if you want to
|
||||
support fetching from any host, leave off the remoteHosts flag. Try it out by
|
||||
support fetching from any host, leave off the allowHosts flag. Try it out by
|
||||
running:
|
||||
|
||||
imageproxy -remoteHosts example.com
|
||||
imageproxy -allowHosts example.com
|
||||
|
||||
Reload the [codercat URL][], and you should now get an error message. You can
|
||||
specify multiple hosts as a comma separated list, or prefix a host value with
|
||||
|
|
|
@ -29,7 +29,7 @@ case "$1" in
|
|||
test -n "$ADDR" && DAEMON_OPTS+=" -addr=$ADDR"
|
||||
test -n "$CACHE" && DAEMON_OPTS+=" -cache=$CACHE"
|
||||
test -n "$LOG_DIR" && DAEMON_OPTS+=" -log_dir=$LOG_DIR"
|
||||
test -n "$ALLOWED_REMOTE_HOSTS" && DAEMON_OPTS+=" -remoteHosts=$ALLOWED_REMOTE_HOSTS"
|
||||
test -n "$ALLOWED_REMOTE_HOSTS" && DAEMON_OPTS+=" -allowHosts=$ALLOWED_REMOTE_HOSTS"
|
||||
|
||||
echo -n "Starting $NAME: "
|
||||
start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
|
||||
|
|
|
@ -11,4 +11,4 @@ exec start-stop-daemon --start -c www-data --exec /usr/bin/imageproxy -- \
|
|||
-cache /var/cache/imageproxy \
|
||||
-signatureKey @/etc/imageproxy.key \
|
||||
-baseURL https://willnorris.com/ \
|
||||
-remoteHosts willnorris.com,notsoserendipitous.com,gabenorris.com
|
||||
-allowHosts willnorris.com,notsoserendipitous.com,gabenorris.com
|
||||
|
|
|
@ -9,7 +9,7 @@ ExecStart=/usr/local/bin/imageproxy \
|
|||
-cache /var/cache/imageproxy \
|
||||
-signatureKey @/etc/imageproxy.key \
|
||||
-baseURL https://willnorris.com/ \
|
||||
-remoteHosts willnorris.com,notsoserendipitous.com,gabenorris.com
|
||||
-allowHosts willnorris.com,notsoserendipitous.com,gabenorris.com
|
||||
Restart=on-abort
|
||||
|
||||
[Install]
|
||||
|
|
Loading…
Reference in a new issue