--- layout: page title: Door Servers --- ## The bbs_link Module Native support for [BBSLink](http://www.bbslink.net/) doors is provided via the `bbs_link` module. Configuration for a BBSLink door is straight forward. Take a look at the following example for launching Tradewars 2002: ```hjson doorTradeWars2002BBSLink: { desc: Playing TW 2002 (BBSLink) module: bbs_link config: { sysCode: XXXXXXXX authCode: XXXXXXXX schemeCode: XXXXXXXX door: tw } } ``` Fill in your credentials in `sysCode`, `authCode`, and `schemeCode` and that's it! > :bulb: Avoid storing credentials in plain text. Use `@file:` or `@environment:` instead: > ```hjson > authCode: "@file:/run/secrets/bbslink_auth" > ``` > See [Configuration Files — Secret Files](../../configuration/config-files.md#secret-files) for details. ## The door_party Module The module `door_party` provides native support for [DoorParty!](http://www.throwbackbbs.com/) Configuration is quite easy: ```hjson doorParty: { desc: Using DoorParty! module: door_party config: { username: XXXXXXXX password: XXXXXXXX bbsTag: XX } } ``` Fill in `username`, `password`, and `bbsTag` with credentials provided to you and you should be in business! > :bulb: Avoid storing credentials in plain text. Use `@file:` or `@environment:` instead: > ```hjson > password: "@file:/run/secrets/doorparty_pass" > ``` > See [Configuration Files — Secret Files](../../configuration/config-files.md#secret-files) for details. ## The Exodus Module TBC