-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update cgimap config to start and increase num of conection to postgr…
…es DB - production
- Loading branch information
Showing
3 changed files
with
34 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/usr/bin/env bash | ||
export CGIMAP_HOST=$POSTGRES_HOST | ||
export CGIMAP_DBNAME=$POSTGRES_DB | ||
export CGIMAP_USERNAME=$POSTGRES_USER | ||
export CGIMAP_PASSWORD=$POSTGRES_PASSWORD | ||
export CGIMAP_OAUTH_HOST=$POSTGRES_HOST | ||
export CGIMAP_UPDATE_HOST=$POSTGRES_HOST | ||
export CGIMAP_LOGFILE="/var/www/log/cgimap.log" | ||
export CGIMAP_MEMCACHE=$OPENSTREETMAP_memcache_servers | ||
export CGIMAP_RATELIMIT="204800" | ||
export CGIMAP_MAXDEBT="250" | ||
export CGIMAP_MAP_AREA="0.25" | ||
export CGIMAP_MAP_NODES="100000" | ||
export CGIMAP_MAX_WAY_NODES="2000" | ||
export CGIMAP_MAX_RELATION_MEMBERS="32000" | ||
# export CGIMAP_RATELIMIT_UPLOAD="true" | ||
# export CGIMAP_MODERATOR_RATELIMIT="1048576" | ||
# export CGIMAP_MODERATOR_MAXDEBT="1280" | ||
# export CGIMAP_PIDFILE="/var/www/cgimap.pid" | ||
|
||
# Check for web site status | ||
if [[ "$WEBSITE_STATUS" == "database_readonly" || "$WEBSITE_STATUS" == "api_readonly" ]]; then | ||
export CGIMAP_DISABLE_API_WRITE="true" | ||
fi | ||
if [[ "$WEBSITE_STATUS" == "database_offline" || "$WEBSITE_STATUS" == "api_offline" ]]; then | ||
echo "Website is $WEBSITE_STATUS. No action required for cgimap service." | ||
else | ||
/usr/local/bin/openstreetmap-cgimap --port=8000 --daemon --instances=10 | ||
fi | ||
# pkill -9 -f 'openstreetmap-cgimap' |
This file contains 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