https://xxx.com/form.php 에서 post 하면
http://xxx.com:443/result.php
400 Bad Request
The plain HTTP request was sent to HTTPS port
이렇게 proto가 변형되면서 오류가 발생한다면 아래의 설정을 추가해봅니다
[파일: nginx.conf]
http {
map $scheme $php_https { default off; https on; }
}
[파일: fastcgi_params]
fastcgi_param HTTPS $php_https;