Skip to content

Commit

Permalink
chore: Reconfigure all "zio" endpoints to use the original address (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
seakayone committed Oct 19, 2023
1 parent 9f2a790 commit eaaefc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/dsp-app/src/config/config.dev.json
Expand Up @@ -12,7 +12,7 @@
"jsonWebToken": "",
"logErrors": true,
"zioPrefix": ":5555",
"zioEndpoints": ["/admin/projects"],
"zioEndpoints": [],
"iriBase": "http://rdfh.ch",
"instrumentation": {
"environment": "local-dev",
Expand Down
Expand Up @@ -24,7 +24,7 @@ describe('AppConfigService with dev config', () => {
jsonWebToken: 'mytoken',
logErrors: true,
zioPrefix: ':5555',
zioEndpoints: ['/admin/projects'],
zioEndpoints: [],
geonameToken: 'geoname_token',
iriBase: 'http://rdfh.ch',
instrumentation: {
Expand Down Expand Up @@ -62,7 +62,7 @@ describe('AppConfigService with dev config', () => {
expect(service.dspApiConfig.apiHost).toEqual('0.0.0.0');
expect(service.dspApiConfig.apiPort).toEqual(3333);
expect(service.dspApiConfig.zioPrefix).toEqual(':5555');
expect(service.dspApiConfig.zioEndpoints).toEqual(['/admin/projects']);
expect(service.dspApiConfig.zioEndpoints).toEqual([]);
expect(service.dspApiConfig.apiPath).toEqual('mypath');
expect(service.dspIiifConfig.iiifProtocol).toEqual('http');
expect(service.dspIiifConfig.iiifHost).toEqual('0.0.0.0');
Expand Down

0 comments on commit eaaefc9

Please sign in to comment.