Oracle应用服务器10.1.3

发布于 2024-08-24 04:21:17 字数 111 浏览 7 评论 0原文

我们如何保护 OAS 管理控制台的安全而不将其暴露给外界。或者换句话说,我们如何隐藏某些页面以使其不显示。

类似的东西应该只能通过本地主机访问,而不能通过域名或IP访问。

谢谢

How do we secure OAS administration em console and not expose it to the outside world. Or in other words how do we hide certain pages from displaying.

Something like it should be accessible only by localhost and not by the domain name or the ip.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故人如初 2024-08-31 04:21:17

您应该能够按照文档

创建网站配置文件

网站配置文件中定义的关键信息包括以下内容:

  • 绑定到的每个应用程序的 Web 上下文站点,附加到用于访问站点的 URL(例如 /em)。
  • 该网站使用的协议。在 OPMN 管理的环境中,该值将被 opmn.xml 中指定的协议覆盖。
  • 站点侦听的端口。在 OPMN 管理的环境中,该值将被 opmn.xml 中指定的端口范围覆盖。
  • 访问日志文件的位置,用于跟踪用户对站点的访问。

创建新配置文件的最直接方法是复制默认网站配置文件 default-web-site.xml,该文件位于 ORACLE_HOME/j2ee/instance/config 目录中。根据以下约定命名文件:

webSiteName-web-site.xml

典型的配置文件包括一个根元素,其中包含指定以下内容的属性:

  • host:此网站的主机,可以是 DNS 主机名,也可以是一个IP地址。如果服务器有多个 IP 地址,您可以使用 ALL 设置来侦听所有 IP 地址。

  • port:网站侦听端口。

  • display-name:网站的显示名称。

  • 虚拟主机:绑定到此网站的任何其他域。

You should be able to set the site to listen on 127.0.0.1 by following this section of the documentation

Creating the Web Site Configuration File

The key information defined in a Web site configuration file includes the following:

  • The Web context for each application bound to the site, which is appended to the URL used to access the site (for example, /em).
  • The protocol the site uses. In an OPMN-managed environment, this value will be overridden by the protocol specified in opmn.xml.
  • The port the site listens on. In an OPMN-managed environment, this value will be overridden by the port range specified in opmn.xml.
  • The location of the access log file, which tracks user access to the site.

The most straightforward way to create a new configuration file is to make a copy of the default Web site configuration file, default-web-site.xml, which is located in the ORACLE_HOME/j2ee/instance/config directory. Name the file according to the following convention:

webSiteName-web-site.xml

The typical configuration file includes a root element containing attributes that specify the following:

  • host: The host for this Web site, as either a DNS host name or an IP address. If a server has multiple IP addresses, you can use the ALL setting to listen to all the IP addresses.

  • port: The Web site listener port.

  • display-name: The for-display name of the Web site.

  • virtual-hosts: Any additional domains bound to this Web site.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文