I configured nginx.conf to transfer the requests from Angular 2 application to the tomcat application. Still got several problems. My nginx.conf is as follows:
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 8082;
root /;
client_max_body_size 50M;
location /images {
root /var/www/rentoptimum;
}
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://localhost:4200/;
}
location /api/ {
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://localhost:8080/rentapp/;
}
}
server {
listen 8081;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
include servers/*;
}
The url localhost:8081 works fine, I see “Welcome to nginx”. Localhost:4200 gives the angular application. Localhost:8082 does not open localhost:4200 and the proxy pass (http://localhost:8080/rentapp/;) to tomcat does not work either.
The error stack on the Chrome is as follows:
Failed to load resource: net::ERR_CONTENT_LENGTH_MISMATCH
inline.bundle.js:53 Uncaught TypeError: Cannot read property 'call' of undefined
at __webpack_require__ (inline.bundle.js:53)
at Object.1022 (main.bundle.js:6)
at __webpack_require__ (inline.bundle.js:53)
at webpackJsonpCallback (inline.bundle.js:24)
at main.bundle.js:1
First one needs to setup logging, so I commented out error_log in the configuration file:
Then in the log I could see:
The log showed the permission problem on:
Fixing permissions on this path solved the problem