ฉันมีหน้าลงทะเบียนในโดเมนย่อยเช่น: https://signup.example.com
มันควรจะสามารถเข้าถึงได้ผ่าน HTTPS แต่ฉันกังวลว่าผู้คนอาจสะดุดมันผ่าน HTTP และรับ 404
html / server block ของฉันใน nginx มีลักษณะดังนี้:
html {
server {
listen 443;
server_name signup.example.com;
ssl on;
ssl_certificate /path/to/my/cert;
ssl_certificate_key /path/to/my/key;
ssl_session_timeout 30m;
location / {
root /path/to/my/rails/app/public;
index index.html;
passenger_enabled on;
}
}
}
สิ่งที่ฉันสามารถเพิ่มเพื่อให้ผู้คนที่ไปhttp://signup.example.com
ได้รับการเปลี่ยนเส้นทางไปยังhttps://signup.example.com
? (FYI ฉันรู้ว่ามีปลั๊กอิน Rails ที่สามารถบังคับได้SSL
แต่หวังว่าจะหลีกเลี่ยงได้)