Browsing index pages (2 articles)
↧
Spring boot app behind nginx redirects improperly
I'm attempting to run my spring boot app behind nginx (on a dev machine), using a config file I found at Running a Spring Boot app behind nginx. Firefox however says it isn’t redirecting properly, and...
View ArticleAnswer by Richard Smith for Spring boot app behind nginx redirects improperly
You should use:proxy_pass http://tomcat;The protocol scheme used to connect to Tomcat on port 8080 is fixed and should be http or https. The $scheme of this server block happens to be http, but there...
View Article
Browsing index pages (2 articles)