Oracle应用服务器10.1.3
我们如何保护 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够按照文档
创建网站配置文件
网站配置文件中定义的关键信息包括以下内容:
创建新配置文件的最直接方法是复制默认网站配置文件 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 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.