6

I have a grails project. Right now, the user can access it either with HTTP or HTTPS. I would like to require that they can only access it through HTTPS. any ideas? I do have spring security core installed, if that can be of help

thanks jason

jason
  • 3,821
  • 10
  • 63
  • 120

1 Answers1

7

Spring's core supports that:

grails.plugins.springsecurity.secureChannel.definition = [
  '/path/**':         'REQUIRES_SECURE_CHANNEL'
]
Chris Cashwell
  • 22,308
  • 13
  • 63
  • 94