ฉันมีปัญหาในการเปลี่ยนเส้นทาง HTTP เป็น HTTPS เพื่อทำงานใน Tomcat ของฉัน
ใน Server.xml ฉันมีตัวเชื่อมต่อ
<Connector port="8080" protocol="HTTP/1.1" redirectPort="8443" />
<Connector port="8443" maxHttpHeaderSize="8192" maxThreads="100"
minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" scheme="https" secure="true"
SSLEnabled="true" clientAuth="false"
sslProtocol="TLS" keyAlias="some_alias"
keystoreFile="secret-keystore-files"
keystorePass="Supersafepassword" />
และใน web.xml
<security-constraint>
<web-resource-collection>
<web-resource-name>HTTPSOnly</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
HTTPS ทำงานได้ดีโดยไม่มีปัญหาใบรับรอง แต่เมื่อฉันเข้าถึง http://server:8080 ฉันถูกเปลี่ยนเส้นทางไปที่ https://server:8080 (พอร์ตเดียวกัน) ไม่ใช่ 8443 ตามที่คาดไว้