An http thing is always in error handler

Hi there,
I have two of my http thing which are all the time in handler error. When I configure them, everything is fine but after a restart of the RPi, they remain stuck on error handler. If I want to solve the problem, I have to delete the thing and then redo it from 0 but it replants on the next restart. Does anyone have a solution so that they don’t get a handler error?

Here is the configuration code for one of them :

UID: http:url:S_Led
label: S Led
thingTypeUID: http:url
configuration:
  authMode: BASIC
  ignoreSSLErrors: true
  baseURL: http://192.168.88.174
  delay: 0
  stateMethod: POST
  refresh: 100000000000000
  commandMethod: POST
  contentType: application/json
  timeout: 3000
  bufferSize: 2048
location: Merde
channels:
  - id: On
    channelTypeUID: http:switch
    label: On
    description: null
    configuration:
      onValue: on
      commandExtension: /on
  - id: Off
    channelTypeUID: http:switch
    label: Off
    description: null
    configuration:
      offValue: off
      commandExtension: /off
  - id: Alerte_On
    channelTypeUID: http:switch
    label: Alerte On
    description: null
    configuration:
      onValue: alertOn
      commandExtension: /alertOn
  - id: Alert_Off
    channelTypeUID: http:switch
    label: Alert Off
    description: null
    configuration:
      offValue: alertOff
      commandExtension: /alertOff
  - id: Confetti
    channelTypeUID: http:switch
    label: Confetti
    description: null
    configuration:
      onValue: confetti
      commandExtension: /confetti
  - id: Fade
    channelTypeUID: http:switch
    label: Fade
    description: null
    configuration:
      onValue: fade
      commandExtension: /fade
  - id: Rainbow
    channelTypeUID: http:switch
    label: Rainbow
    description: null
    configuration:
      onValue: rainbow
      commandExtension: /rainbow
  - id: Sinelon
    channelTypeUID: http:switch
    label: Sinelon
    description: null
    configuration:
      onValue: sinelon
      commandExtension: /sinelon
  - id: Juggle
    channelTypeUID: http:switch
    label: Juggle
    description: null
    configuration:
      onValue: juggle
      commandExtension: /juggle
  - id: Rainbow_Red_Tone
    channelTypeUID: http:switch
    label: Rainbow Red Tone
    description: null
    configuration:
      onValue: rainbowRedTone
      commandExtension: /rainbowRedTone
  - id: Rainbow_With_Glitter
    channelTypeUID: http:switch
    label: Rainbow With Glitter
    description: null
    configuration:
      onValue: rainbowWithGlitter
      commandExtension: /rainbowWithGlitter
  - id: BPM
    channelTypeUID: http:switch
    label: BPM
    description: null
    configuration:
      onValue: bpm
      commandExtension: /bpm
  - id: Point
    channelTypeUID: http:switch
    label: Point
    description: null
    configuration:
      onValue: point
      commandExtension: /point
  - id: Animations
    channelTypeUID: http:string
    label: Animations
    description: null
    configuration: {}

Thanks in advance.