Skip to content

Commit

Permalink
Merge pull request #17 from MaastrichtU-IDS/nanopub_connection_fix
Browse files Browse the repository at this point in the history
nanopub URI changed and added proxy conf to docker-compose config
  • Loading branch information
micheldumontier authored Jul 2, 2024
2 parents 11d67ab + cfb7a96 commit ac7e184
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion backend/app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Settings(BaseSettings):
NER_MODELS_PATH: str = "./ner-models"

NANOPUB_GRLC_URL: str = "https://grlc.np.dumontierlab.com/api/local/local"
NANOPUB_SPARQL_URL: str = "https://virtuoso.nps.petapico.org/sparql"
NANOPUB_SPARQL_URL: str = "https://virtuoso.nps.knowledgepixels.com/sparql"
# NANOPUB_SPARQL_URL: str = "https://virtuoso.test.nps.knowledgepixels.com/sparql"

# SERVER_NAME: str = 'localhost'
Expand Down
5 changes: 5 additions & 0 deletions docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ services:
VIRTUAL_HOST: api.collaboratory.semanticscience.org
LETSENCRYPT_HOST: api.collaboratory.semanticscience.org
NO_JAEGER: "true"
HTTP_PROXY: http://proxy.unimaas.nl:3128
HTTPS_PROXY: http://proxy.unimaas.nl:3128
http_proxy: http://proxy.unimaas.nl:3128
https_proxy: http://proxy.unimaas.nl:3128
NO_PROXY: 127.0.0.1,localhost,137.120.0.0/16
volumes:
- /data/knowledge-collaboratory/ner-models:/data/ner-models
- /data/knowledge-collaboratory/nanopub-keystore:/data/nanopub-keystore

0 comments on commit ac7e184

Please sign in to comment.