Я использую React. js во внешнем интерфейсе и SpringBoot в внутреннем. Я настроил nginx как веб-сервер и tomcat как сервер приложений.
Я развернул Springboot War в веб-приложении tomcat. Теперь, когда я обращаюсь к приложению через браузер на моем www.example.com: 8080 / api, оно работает отлично.
То же самое, когда я пытаюсь получить к нему доступ через свою реакцию. js приложение выдает ошибку. ** net :: ERR_CONNECTION_REFUSED **
Мой tomcat работает на локальном хосте и на порту 8080 на моем linux сервере.
**This URL i am trying to access from react.js application.**
http://localhost:8080/api/test
** Ниже приведены мои nginx .conf подробности **
server {
listen 80;
server_name dev.example.com; # Redirect to HTTPS
return 301 https://$host$request_uri;
}
server {
listen 443 ssl http2; # managed by Certbot
server_name dev.example.com;
root /usr/share/nginx/build
index index.html index.htm;
location = /index.html {
add_header "Access-Control-Allow-Origin" *;
http2_push /logo192.png;
}
location / {
try_files $uri $uri/ /index.html;
}
location = /api {
proxy_pass http://localhost:8080$request_uri;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_cache_bypass $http_upgrade;
}
#Auto included by certbot do not modify it.
#listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/example.com/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/example.com/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
** Любая помощь будет оценена **