如何添加新的请求标头并将请求转发到Spring引导中的新资源(URL)?

时间:2017-10-07 01:06:50

标签: spring spring-mvc nginx spring-boot

我正在玩Nginx和Microservice(在Spring启动时开发)。我想知道一种方法是在请求头中添加一个新值,并从一个作为Spring启动应用程序运行的微服务重定向到Nginx中的新资源。 TIA

配置:

 server {
        listen       8091;
        server_name  localhost;
        location / {
            rewrite_by_lua_file  redirect.lua;
        }
        location /authdone/ {
            rewrite_by_lua_file  redirect.lua;
        }

        location /authorize/ {
            proxy_pass http://localhost:8080;
        }

        location /admin/ {
            proxy_pass http://localhost:8080;
        }
     include nginx_backend.conf;
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }

0 个答案:

没有答案