当前位置: 首页 > 工具软件 > Orthanc > 使用案例 >

Orthanc 设置IP访问

东方谦
2023-12-01

配置好 Orthanc 后 如果不修改Configuration.json文件的参数的话 只能使用localhost访问

需要修改Configuration.json 文件 

这里提示下 如果是源码编译出来的  作者暂时没有找到Configuration.json 文件

需要修改Main方法中的代码 设置好 指定Configuration.json 路径 当然 这个不是重点

Configuration修改的地方

   RemoteAccessAllowed  //修改为True

  AuthenticationEnabled=false 给注释去掉

  /**
   * Security-related options for the HTTP server
   **/

  // Whether remote hosts can connect to the HTTP server

  "RemoteAccessAllowed" : true, 
  // Whether or not the password protection is enabled (using HTTP
  // basic access authentication). Starting with Orthanc 1.5.8, if
  // "AuthenticationEnabled" is not explicitly set, authentication is
  // enabled iff. remote access is allowed (i.e. the default value of
  // "AuthenticationEnabled" equals that of "RemoteAccessAllowed").

     "AuthenticationEnabled" : false,

重启软件 可以用IP+端口号访问了

 类似资料: