Como configurar o host virtual no nginx para o wildfly

1

Eu preciso configurar o virtualhost no nginx para o servidor wildfly. Eu estava usando o host virtual do Apache anteriormente e eu quero fazer configurações semelhantes no nginx Eu segui os passos dados neste artigo link e link

Aqui está o meu arquivo conf

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;
  }
}

No meu diretório raiz eu tenho index.html

<html>
<head>
<meta http-equiv="Refresh" content="0;url=/Test/hello.jsp">
<title>Index Redirect</title>
</head>
</body>

Eu preciso enviar minha solicitação do link para meu diretório-raiz index.html, que será redirecionado para /Test/hello.jsp;

Como conseguir isso.Por favor, me sugira o que estou fazendo de errado aqui

    
por kirti 02.11.2015 / 16:25

0 respostas