2018-01-31 23:35:54 +00:00
|
|
|
---
|
|
|
|
layout: page
|
|
|
|
title: Web Server
|
|
|
|
---
|
2017-10-29 12:50:25 +00:00
|
|
|
ENiGMA½ comes with a built in *content server* for supporting both HTTP and HTTPS. Currently the
|
2018-01-31 23:35:54 +00:00
|
|
|
[File Bases](file_base.md) registers routes for file downloads, and static files can also be served
|
|
|
|
for your BBS. Other features will likely come in the future or you can easily write your own!
|
2017-02-10 03:33:49 +00:00
|
|
|
|
|
|
|
## Configuration
|
2017-10-29 12:50:25 +00:00
|
|
|
By default the web server is not enabled. To enable it, you will need to at a minimum configure two keys in
|
|
|
|
the `contentServers::web` section of `config.hjson`:
|
2017-02-10 03:33:49 +00:00
|
|
|
|
|
|
|
```hjson
|
|
|
|
contentServers: {
|
|
|
|
web: {
|
|
|
|
domain: bbs.yourdomain.com
|
|
|
|
|
|
|
|
http: {
|
|
|
|
enabled: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2017-10-29 12:50:25 +00:00
|
|
|
This will configure HTTP for port 8080 (override with `port`). To additionally enable HTTPS, you will need a
|
|
|
|
PEM encoded SSL certificate and private key. [LetsEncrypt](https://letsencrypt.org/) supply free trusted
|
|
|
|
certificates that work perfectly with ENiGMA½.
|
|
|
|
|
|
|
|
Once obtained, simply enable the HTTPS server:
|
|
|
|
|
2017-02-10 03:33:49 +00:00
|
|
|
```hjson
|
|
|
|
contentServers: {
|
|
|
|
web: {
|
|
|
|
domain: bbs.yourdomain.com
|
2017-10-29 12:50:25 +00:00
|
|
|
// set 'overrideUrlPrefix' if for example, you use a transparent proxy in front of ENiGMA and need to be explicit about URLs the system hands out
|
2017-02-17 04:40:05 +00:00
|
|
|
overrideUrlPrefix: https://bbs.yourdomain.com
|
2017-02-10 03:33:49 +00:00
|
|
|
https: {
|
|
|
|
enabled: true
|
|
|
|
port: 8443
|
|
|
|
certPem: /path/to/your/cert.pem
|
|
|
|
keyPem: /path/to/your/cert_private_key.pem
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2018-01-31 23:35:54 +00:00
|
|
|
If no certificate paths are supplied, ENiGMA½ will assume the defaults of `/config/https_cert.pem` and
|
|
|
|
`/config/https_cert_key.pem` accordingly.
|
|
|
|
|
2017-02-10 03:33:49 +00:00
|
|
|
### Static Routes
|
|
|
|
Static files live relative to the `contentServers::web::staticRoot` path which defaults to `enigma-bbs/www`.
|
|
|
|
|
|
|
|
### Custom Error Pages
|
2017-10-29 12:50:25 +00:00
|
|
|
Customized error pages can be created for [HTTP error codes](https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#4xx_Client_Error)
|
|
|
|
by providing a `<error_code>.html` file in the *static routes* area. For example: `404.html`.
|