I understand that the PHP underlying server does not support SSL can it get anyway?
I tried to code all the codes to NGN proxy and proxy_passp to HTTPS requests, but when I Http: //
to http://127.0.0.1:8080
127.0.0.1:8080 https://127.0.0.1:8080
This causes the redirection loop.
server {443 Listen ssl; Server_name 127.0.0.1; Ssl_certificate /etc/nginx/cert.crt; Ssl_certificate_key /etc/nginx/cert.key; Ssl_protocols TLSv1 TLSv1.1 TLSv1.2; Ssl_ciphers High:! ANALLET! MD5; Location / {proxy_pass http://127.0.0.1:8080; }}
How do you solve that issue?
No comments:
Post a Comment