Webserver

The webserver is used for receiving information from discord OAuth requests. If you are not using the following features you can ignore it:

  • Verify

If you want to configure these features, look into:

Features
webserver:
  # Should the webserver be launched? This feature is only used for regulars
  active: false
  # The port under which the webserver will be launched
  port: 8080
  # What uri to start the webserver under
  redirect_uri: "/auth/discord/redirect"
  # Where should the redirect be, include the full url e.g., https://localhost:80/auth/discord/redirect
  uri: ""
Active

Defines if the webserver should be started

Port

The port under which the webserver will be occupying.

Redirect Uri

The uri the webserver will be trying to catch incoming connections from the discord OAuth api from.

Uri

The full redirect uri. Make sure you use your correct url, port etc. This could look something like this: http://localhost:8080/auth/discord/redirect

webserver:
  # Should the webserver be launched? This feature is only used for regulars
  active: false
  # The port under which the webserver will be launched
  port: 8080
  # What uri to start the webserver under
  redirect_uri: "/auth/discord/redirect"
  # Where should the redirect be, include the full url e.g., https://localhost:80/auth/discord/redirect
  uri: ""

h

Last updated