IHTSDO / authoring-ui

SNOMED CT Authoring Frontend Application, part of the SNOMED International Authoring Platform
Other
8 stars 4 forks source link

What is https://dev-authoring.ihtsdotools.org/config? #16

Closed tandara0 closed 1 year ago

tandara0 commented 1 year ago

Hello.

I am trying to setup Snomed Authoring Platform. Until now, I have successfully installed and linked authoring service, authoring ui, jira, crowd and IMS so far.

But I still failed to get /config/version. In the nginx.conf, the location /config is proxy to https://dev-authoring.ihtsdotools.org/config, which is not working, of course. Like other locations in the nginx.conf, this location may be one of the IHTSDO services. But I cannot even guess which one is config service in this IHTSDO open source repository.

Thank you.

Chris-Swires commented 1 year ago

Hey @tandara0

I'll get the readme updated for you during this development cycle, however for now the configuration there has been updated to:

location /config { alias /opt/authoring-ui/conf; }

(And the authoring-ui is calling /config/versions.json - so the file explicitly)

That in our case routes to a file containing our deployed application versions at the point of deployment. This is generated by our rundeck deployment job, and so may not be relevant to your stack.

Chris