Setting timeout per service/router

I currently have a config extract such as :

entryPoints:
  http:
    address: ":80"
    http:
      redirections:
        entryPoint:
          to: https
          scheme: https
  https:
    address: ":443"
    http:
      tls:
        certResolver: tls-cr
    transport:
      respondingTimeouts:
        #timeout in s
        readTimeout: 1
        writeTimeout: 1

Using docker provider and labels, is it possible to override those timeout values, per service or router ?

I've got the same exact question :thinking:
Can someone provide some guidance if this is (will) be possible :pray: