Когда я пытаюсь настроить Zuul в application.properties, я должен указать zuul.routes.login.url = http://localhost:8080/, насколько мне известно до сих пор с Zuul.
, поэтому я должендай https://localhost/login для перенаправления на http://localhost:8080/
Я вообще не хочу давать логин в конце.
Но я хочу что-то вроде: пока я нажму https://localhost/, это должно указывать на http://localhost:8080/
Есть ли какой-либо элемент конфигурации или что-то, что помогает мне достичь этой конфигурации? Пока что
zuul.routes.login.url=http://localhost:8080/
#Riban is auto integrated with Zuul and for this exercise we are not
using that.
ribbon.eureka.enabled=false
#Will start the gateway server @8080
#server.port=8080
# Define a custom port instead of the default 8080
server.port=443
# Tell Spring Security (if used) to require requests over HTTPS
security.require-ssl=true
# The format used for the keystore
server.ssl.key-store-type=PKCS12
# The path to the keystore containing the certificate
Я ожидаю дать https://localhost/ следует направить на http://localhost:8080/
Заранее спасибо.