gpt4 book ai didi

java - windows 7环境下如何用Nginx配置Jboss AS 7

转载 作者:行者123 更新时间:2023-12-03 20:25:27 25 4
gpt4 key购买 nike

任何人都可以一步一步地指导使用 nginx 配置 n jboss AS7 企业应用程序。假设如果我有网络服务器路径:C:\jboss-as-7.1.1.Final\已部署@ C:\jboss-as-7.1.1.Final\standalone\deployments\HelloWorld.deployedAppContext 网址:http://localhost:9090/HelloWorld

我希望所有到达 nginx :80 的请求都指向

http://localhost:9090/HelloWorld

注意:

我推荐了 https://serverfault.com/questions/293348/configure-nginx-for-jboss-tomcat仅显示一般信息。任何人都可以指出在 Jboss AS7 中以独立模式部署的 jboss ear 应用程序的实际配置(应用程序未部署为分解版本)。

最佳答案

这样的配置会将 nginx 上的 localhost:80 代理到 jboss 上的 localhost:9090/HelloWorld/

server {
listen 80;
server_name localhost; # or any other logical name
client_max_body_size 10m; # not needed but useful
charset utf-8;
#access_log /var/log/nginx/log/host.access.log main;

location / {
index index.html index.htm;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://localhost:9090/HelloWorld/;
proxy_redirect default;
}
}

关于java - windows 7环境下如何用Nginx配置Jboss AS 7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12589479/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com