Требовалось, чтобы во внутреннем окружении alltech.home.com проксировал на api.open.my
Был настроен proxy web сервер на nginx/1.25.1
server {
listen 80;
server_name alltech.home.com;
location /v1/doit/completions {
proxy_ssl_session_reuse off;
proxy_ssl_server_name on;
proxy_pass https://api.open.my/v1/doit/completions;
}
location / {
root /usr/share/nginx/html/;
autoindex off;
}
}
все - ок.
и тут решил перевести на ssl
server {
listen 443 ssl;
ssl_certificate /etc/ssl/certificate.crt;
ssl_certificate_key /etc/ssl/private.key;
server_name alltech.home.com;
location /v1/doit/completions {
proxy_pass https://api.open.my/v1/doit/completions;
}
location / {
root /usr/share/nginx/html/;
autoindex off;
}
}
по итогу получаю
<center><h1>502 Bad Gateway</h1></center>
<hr><center>nginx/1.25.1</center>
https://alltech.home.com/index.html отрабатывает каку нужно.
Как решить проблему?