Answer the question
In order to leave comments, you need to log in
How to disable https for specific URLs?
It is necessary to disable https for url of the following types:
/mailview?.....
/msd?....
/separator?....
To make them work over http. Now there is no general gluing, it works over http and https, you need to enable https for the entire site except for 3 urls:
listen xxx.xxx.xxx.xx:443 ssl http2;
If without Strict-Transport-Security, do this:
if ($scheme = http) {
rewrite ^ https://$http_host$request_uri? permanent;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question