我需要在 nginx 上为 wildfly 服务器设置虚拟主机。我之前使用过 apache 虚拟主机,我想在 nginx 中进行类似的设置,我已按照本文中给出的步骤进行操作http://nginx.org/en/docs/http/request_processing.html和http://developer-should-know.tumblr.com/post/112512171397/nginx-serving-static-content-and-java-application
这是我的配置文件
server {
listen 80;
server_name www.example.com;
access_log logs/www.example.com_access.log;
error_log logs/www.example.com_error.log;
location / {
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:8080;
root /var/www/www.example.com/public_html;
index index.html ;
try_files $uri $uri/ =404;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
在我的根目录中我有 index.html
<html>
<head>
<meta http-equiv="Refresh" content="0;url=/Test/hello.jsp">
<title>Index Redirect</title>
</head>
</body>
我需要从发送我的请求http://127.0.0.1:8080/到我的根目录 index.html 它将重定向到 /Test/hello.jsp;
如何实现这一点。请告诉我我在这里做错了什么