0.112 Remove Base URL

I see the message in the logs to remove the base_url, what specifically am I removing just that piece? So in my configuration.yaml I have:

# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
http:
  base_url: https://<URL>
  server_port: 8123
  ssl_certificate: /ssl/<URL>-chain.pem
  ssl_key: /ssl/<URL>-key.pem
  use_x_forwarded_for: true
  trusted_proxies:
    - 127.0.0.1
    - 192.168.0.14

Thanks.

JR

Thanks, so right now in the external URL it just shows https://<URL> without the port grayed out of course at the moment. Should I then assume I remove base_url from configuration.yaml and leave the rest including the port as is?

So if right now using fake values I have:

# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
http:
  base_url: https://joe.whatever.net
  server_port: 8123
  ssl_certificate: /ssl/joe.whatever.net-chain.pem
  ssl_key: /ssl/joe.whatever.net-key.pem
  use_x_forwarded_for: true
  trusted_proxies:
    - 127.0.0.1
    - 192.168.0.14

I would change it to:

# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
http:
  server_port: 8123
  ssl_certificate: /ssl/joe.whatever.net-chain.pem
  ssl_key: /ssl/joe.whatever.net-key.pem
  use_x_forwarded_for: true
  trusted_proxies:
    - 127.0.0.1
    - 192.168.0.14

and under Configuration > General under External URL put:

https://joe.whatever.net

Is this accurate?