Using Eclipse 2025-03 (4.35.0)
OpenJDK 21.0.2
I created a GWT Web Application and deployed it on Tomcat 10.0.22, listening on port 8081.
Tomcat is deployed behind nginx. The relevant lines of the conf are:
location / {
expires -1;
add_header Cache-Control "no-store, no-cache, must-revalidate";
proxy_pass
http://127.0.0.1:8081;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
When I point myself are https:[my weburl]/ the GWT Web Application Starter Project loads. When I click on the "Send" button the browser debug console says:
POST https://[my web url]/gwttest/greet 500 (Internal Server Error)
Any help greatly appreciated.