]> git.openstreetmap.org Git - nominatim.git/blobdiff - utils/cron_banip.sh
fix 500 on search for bounded and class query terms
[nominatim.git] / utils / cron_banip.sh
index 1f0aade67927e9cb9760a362cfed712386be0be7..c73db5600dfebfc1eab3ebdc45d34ed7759b0b51 100755 (executable)
@@ -3,8 +3,14 @@
 # Create or update the list of temporarily banned IPs.
 #
 
 # Create or update the list of temporarily banned IPs.
 #
 
-BLOCKEDFILE=/home/lonvia/nominatim/settings/ip_blocks
-LOGFILE=/home/lonvia/nominatim/log/ip_blocks.log
+BASEDIR="$( cd "$( dirname "$0" )" && cd .. && pwd )"
+if [ "x$BASEDIR" == "x" ]; then
+    echo "Could not determine base dir."
+    exit -1
+fi
+
+BLOCKEDFILE=$BASEDIR/settings/ip_blocks
+LOGFILE=$BASEDIR/log/ip_blocks.log
 
 LONG_PERIOD='1 hour'
 SHORT_PERIOD='10 min'
 
 LONG_PERIOD='1 hour'
 SHORT_PERIOD='10 min'