I have made a react app, it is working fine for http protocol. now I want to enable https for this site. My node is listening on port 5000 and react working on port 3000. but I can't send commands to port 5000 where node is listening and I get time out error. This is my nginx default configuration file in sites-enabled folder.
# Default server configuration
server {
listen 80 default_server;
listen [::]:80 default_server;
# SSL configuration
listen 443 ssl ;
listen [::]:443 ssl ;
root /var/www/html/client/public;
index index.html index.htm index.nginx-debian.html;
server_name www.my_domain.co my_domain.co; # managed by Certbot
location / {
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain charset=UTF-8';
add_header 'Content-Length' 0;
return 204;
}
if ($request_method = 'POST') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
}
if ($request_method = 'GET') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
}
proxy_pass http://localhost:3000;
}
location /uploads {
proxy_pass http://localhost:5000;
}
location /api {
proxy_pass http://localhost:5000;
}
ssl_certificate /etc/letsencrypt/live/my_domain.co/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/my_domain.co/privkey.pem; # managed by Certbot
}
what is the problem? I'm confused.