setup orthanc server to access through internet

Hi
I am new to web server set up. Have tried to set orthanc server with ip as below.
So able to access with url along ip address, when im in same sub network.
url: http://192.168.0.103:8042/app/explorer.html
config:

“DicomWeb” : {
“Servers” : {
“sample” : {
“Url” : “http://192.168.0.103:8042/dicom-web/”,

Now i want to setup to access through the internet(https) instead IP address, when they are not in same sub network also.

like url as test https://testorthanc.com/dicom-web/

Can you suggest configurations.

Thanks in advance

Hello,

The first step is to install a Web server such as Apache or nginx, and to publish it onto a public IP address. There are many tutorials on Internet about this process: This question is fully non-specific to Orthanc.

Once the Web server is up and running, you’ll have to map Orthanc on the Web server using the so-called “reverse proxy” mechanism:
https://book.orthanc-server.com/faq/nginx.html

https://book.orthanc-server.com/faq/apache.html

Sébastien-