HTTPS connection is not working [Spring Boot] -


i setting https server using spring boot. followed configure ssl on spring boot docs.

my application.properties file follows.

# ssl server.port = 8443 server.ssl.key-store = classpath:keystore.jks server.ssl.key-store-password = rootroot 

but when access https://localhost:8443 . server returns no response , server temporarily down.

can guide me going wrong?

finally, found answer. using keystore.jks generated machine instead of generating in server machine.

now solved problem using keystore generated keytool on server machine , went well.

anyway, thank answers.


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -