Configuration file locations
- Default users file locations are:
.htpasswdfor standalone binary and/etc/grid-router/users.htpasswdfor Docker image. - Default quota directory location is
quotafor standalone binary and/etc/grid-router/quotafor Docker image. This is why just attaching/etc/grid-routerto container as read-only volume is enough. - To specify custom configuration file locations pass additional arguments to Ggr.
With the standalone binary:
ggr -quotaDir /path/to/quota/directory \ -users /path/to/.htpasswdWith Ggr packed in a Docker container:
docker run -d --name ggr \ -v /etc/grid-router/:/etc/grid-router:ro \ --net host websummoner/ggr:latest-release \ -quotaDir /path/to/quota/directory \ -users /path/to/.htpasswd