After unchecking "Permanent SEO-safe 301 redirect from HTTP to HTTPS" and pressing the "Update & Sync" button, the redirect continues to work. I go to the nginx.conf file of the test site and see the following lines in it:
Is there anything else I need to do to disable the redirect?
NGINX:
server {
listen xxx.xxx.xxx.xxx:80;
server_name xxxxxxxxxx.xxx;
client_max_body_size 128m;
# mailconfig
------- xxxxxx -------
# mailconfig
location / {
return 301 https://$host$request_uri;
}
}