Всем привет/ подскажите плиз
Нужно чтобы nginx проксировал по https
но отдает ошибку и отдает страницу по http
was loaded over https but requested an insecure xmlhttprequest endpoint
location /test {
proxy_pass http://dev-server:60100/pro;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection keep-alive;
proxy_set_header Host $host;
proxy_set_header remote_addr $remote_addr;
proxy_cache_bypass $http_upgrade;
#proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_connect_timeout 300;
proxy_send_timeout 300;
proxy_read_timeout 300;
}