Hello,
I use an nginx reverse proxy and I need to create a rule to allow communication with the IoT server Blynk. The website works smoothly, but Android applications do not. I read somewhere that it does not use the http protocol to communicate with the server and that the problem could be there. This is my very simple proxy rule:
"
server {
listen 443;
listen [::]: 443;
server_name blynk. *;
location / {
proxy_pass https://192.168.1.10:9443/;
}
}
"
Would you please tell me how to set this up for the application to work?
I use an nginx reverse proxy and I need to create a rule to allow communication with the IoT server Blynk. The website works smoothly, but Android applications do not. I read somewhere that it does not use the http protocol to communicate with the server and that the problem could be there. This is my very simple proxy rule:
"
server {
listen 443;
listen [::]: 443;
server_name blynk. *;
location / {
proxy_pass https://192.168.1.10:9443/;
}
}
"
Would you please tell me how to set this up for the application to work?