Skip to content

baseurlpath configuration #59

@ablivio

Description

@ablivio

This line probably doesn't do what it was supposed to:

'baseurlpath' => getenv('SIMPLESAMLPHP_IDP_BASE_URL') ?: '' . 'simplesaml/',

. has precedence over ?:, so

  • if the environment variable is defined, baseurlpath will have its value -- instead of <value> . 'simplesaml/'
  • otherwise, baseurlpath will be equal to 'simplesaml/'.

Suggested fix:

'baseurlpath' => (getenv('SIMPLESAMLPHP_IDP_BASE_URL') ?: '') . 'simplesaml/',

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions