นี่คือการกำหนดค่าปัจจุบันของฉัน:
เซิร์ฟเวอร์ {
ถ้า ($host = www.mywebsite.com) {
กลับ 301 https://mywebsite.com$request_uri;
} # จัดการโดย Certbot
ถ้า ($host = mywebsite.com) {
กลับ 301 https://mywebsite.com$request_uri;
} # จัดการโดย Certbot
ฟัง 80;
ชื่อเซิร์ฟเวอร์ mywebsite.com www.mywebsite.com;
กลับ 404; # จัดการโดย Certbot
}
เซิร์ฟเวอร์ {
server_name mywebsite.com;
รูท /var/www/html/mywebsite.com/public;
ที่ตั้ง / {
try_files $uri $uri/index.html @sinatra;
}
สถานที่ @sinatra {
proxy_pass http://127.0.0.1:4567;
}
ฟัง [::]:443 ssl http2 ipv6only=on;
ฟัง 443 ssl http2; # จัดการโดย Certbot
ssl_certificate /etc/letsencrypt/live/mywebsite.com/fullchain.pem; # จัดการโดย Certbot
ssl_certificate_key /etc/letsencrypt/live/mywebsite.com/privkey.pem; # จัดการโดย Certbot
รวม /etc/letsencrypt/options-ssl-nginx.conf; # จัดการโดย Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # จัดการโดย Certbot
}
สิ่งที่ฉันต้องการคือการมีทุกอย่าง... www-version หรือ http-version ของ URL ใด ๆ ที่เปลี่ยนเส้นทางไปยัง HTTPS url ที่ไม่ใช่ www
ตอนนี้ทุกอย่างใช้งานได้ด้วยการจับสองสามอย่าง:
https://mywebsite.com
ทำงานได้ดี
http://mywebsite.com
เปลี่ยนเส้นทางไปที่ https://mywebsite.com
(สมบูรณ์แบบเกินไป)
https://www.mywebsite.com
เปลี่ยนเส้นทางไปที่ https://mywebsite.com//
(ทับท้ายสองครั้ง!)
http://www.mywebsite.com
เปลี่ยนเส้นทางไปที่ https://mywebsite.com//
(ทับท้ายสองครั้งอีกครั้ง!)
ฉันจะแก้ไขปัญหานี้ได้อย่างไร