Preamble
As explained in the the documentation, the WDQS frontend endpoint is reachable at https://query.my-wikibase.org/proxy/wdqs/bigdata/namespace/wdq/sparql path.
The endpoint of Wikidata is reachable at a much shorter URL – https://query.wikidata.org/sparql – and the same is valid for the majority of publicly-available Wikibase on the internet; please see values of P5305 for examples.
Observation
I see the relevant path is referenced in the custom-config.json:
{
"api": {
"sparql": {
"uri": "/proxy/wdqs/bigdata/namespace/wdq/sparql"
},
…and then checked in docker-compose.yml:
… healthcheck: test: curl --silent --fail localhost:9999/bigdata/namespace/wdq/sparql interval: 10s start_period: 2m …
but I suppose this is only a small part of the big picture.
Question
How can we configure Wikibase Suite to customize our own frontend endpoint?
I thnk what I observed above is a couple of references to the configuration, not the configuration itself. Am I right?
If yes, where should we act in the WBS configuration to customize the endpoint URL?
Thanks in advance