HTTPS 伺服器上的 HTTP 位置

具有 http 位置的 HTTPS 伺服器:

server {
    listen 443;
    root /var/www/
    location / {
       ...
    }
    location /http {
        rewrite ^ http://$host$request_uri? permanent;
    }
}

HTTP 伺服器重定向到 HTTPS,但一個位置除外:

server {
    root /var/www/
    location / {
        rewrite ^ https://$host$request_uri? permanent;
    }
    location /http {
       ...
    }
}