HTTPS редирект для 1С
Редирект для конфига nginx без учета 1С api.
Создайте файл /etc/nginx/helper/https_redirect.conf
set $test 0;
if ($scheme = http) {
set $test 1;
}
if ($http_x_forwarded_proto = http){
set $test 1;
}
if ($http_x_forwarded_proto = https){
set $test 0;
}
if ($request_uri ~ ^/api/1c_exchange.php*){
set $test 0;
}
if ($test = 1){
return 301 https://$host$request_uri;
}
В файле конфиге настройки сайта добавьте
# Redirect to ssl
include helper/https_redirect.conf;