[Flow] Problem with HttpBasic auth
Jonas Renggli
jonas.renggli at visol.ch
Thu Mar 12 13:07:15 CET 2015
There's an error in the documentation.
To configuration option should be called 'token'
And it needs a FQCN as value (e.g. 'TYPO3\Flow\Security\Authentication\Token\UsernamePasswordHttpBasic'
Have a look at FLOW-51 on jira.typo3.org ("You cannot use links until you have posted more than 3 messages." => Arghhhh!!)
The following configuration works for me:
==== Settings.yaml ====
TYPO3:
Flow:
security:
authentication:
authenticationStrategy: oneToken
providers:
DefaultProvider:
provider: PersistedUsernamePasswordProvider
token: TYPO3\Flow\Security\Authentication\Token\UsernamePasswordHttpBasic
entryPoint: HttpBasic
entryPointOptions:
realm: 'Please login to our super secret system'
==== Settings.yaml END ====
More information about the Flow
mailing list