2024-05-14, 09:27 PM
(This post was last modified: 2024-05-14, 09:27 PM by TheDreadPirate. Edited 1 time in total.)
Try commenting out these lines. I couldn't get my Nginx to work with these lines active. Not sure why and didn't feel like digging deeper.
Also, I'm not sure what is in the certs you are currently providing, but with LetsEncrypt certs providing the fullchain.pem helps with some slightly older Android devices since the LetsEncrypt intermediate cert was renewed in late 2022 and some Android device trust stores were never updated to accept it.
Code:
location = / {
return 302 http://$host/web/;
return 302 https://$host/web/;
}
Also, I'm not sure what is in the certs you are currently providing, but with LetsEncrypt certs providing the fullchain.pem helps with some slightly older Android devices since the LetsEncrypt intermediate cert was renewed in late 2022 and some Android device trust stores were never updated to accept it.