stable/docs/rest-api.md

662 lines
24 KiB
Markdown
Raw Normal View History

2022-09-22 17:58:38 +00:00
# REST API & FreqUI
2021-01-25 19:48:52 +00:00
## FreqUI
Freqtrade provides a builtin webserver, which can serve [FreqUI](https://github.com/freqtrade/frequi), the freqtrade UI.
By default, the UI is not included in the installation (except for docker images), and must be installed explicitly with `freqtrade install-ui`.
This same command can also be used to update freqUI, should there be a new release.
Once the bot is started in trade / dry-run mode (with `freqtrade trade`) - the UI will be available under the configured port below (usually `http://127.0.0.1:8080`).
!!! info "Alpha release"
FreqUI is still considered an alpha release - if you encounter bugs or inconsistencies please open a [FreqUI issue](https://github.com/freqtrade/frequi/issues/new/choose).
!!! Note "developers"
Developers should not use this method, but instead use the method described in the [freqUI repository](https://github.com/freqtrade/frequi) to get the source-code of freqUI.
2019-05-18 08:24:22 +00:00
## Configuration
Enable the rest API by adding the api_server section to your configuration and setting `api_server.enabled` to `true`.
Sample configuration:
``` json
"api_server": {
"enabled": true,
"listen_ip_address": "127.0.0.1",
2019-05-25 12:16:59 +00:00
"listen_port": 8080,
2021-01-03 06:18:41 +00:00
"verbosity": "error",
"enable_openapi": false,
2020-05-10 17:42:06 +00:00
"jwt_secret_key": "somethingrandom",
2020-06-24 18:32:19 +00:00
"CORS_origins": [],
2019-05-25 12:16:59 +00:00
"username": "Freqtrader",
2022-09-08 22:27:09 +00:00
"password": "SuperSecret1!",
"ws_token": "sercet_Ws_t0ken"
2019-05-18 08:24:22 +00:00
},
```
!!! Danger "Security warning"
By default, the configuration listens on localhost only (so it's not reachable from other systems). We strongly recommend to not expose this API to the internet and choose a strong, unique password, since others will potentially be able to control your bot.
2019-05-25 12:16:59 +00:00
??? Note "API/UI Access on a remote servers"
If you're running on a VPS, you should consider using either a ssh tunnel, or setup a VPN (openVPN, wireguard) to connect to your bot.
This will ensure that freqUI is not directly exposed to the internet, which is not recommended for security reasons (freqUI does not support https out of the box).
Setup of these tools is not part of this tutorial, however many good tutorials can be found on the internet.
2019-11-11 19:25:44 +00:00
You can then access the API by going to `http://127.0.0.1:8080/api/v1/ping` in a browser to check if the API is running correctly.
2019-11-11 19:09:58 +00:00
This should return the response:
``` output
{"status":"pong"}
```
2020-05-10 17:42:06 +00:00
All other endpoints return sensitive info and require authentication and are therefore not available through a web browser.
2019-05-18 08:24:22 +00:00
2021-01-25 19:48:52 +00:00
### Security
To generate a secure password, best use a password manager, or use the below code.
``` python
import secrets
secrets.token_hex()
```
2021-01-25 19:48:52 +00:00
!!! Hint "JWT token"
2020-05-10 17:42:06 +00:00
Use the same method to also generate a JWT secret key (`jwt_secret_key`).
2021-01-25 19:48:52 +00:00
!!! Danger "Password selection"
Please make sure to select a very strong, unique password to protect your bot from unauthorized access.
2022-09-08 22:27:09 +00:00
Also change `jwt_secret_key` to something random (no need to remember this, but it'll be used to encrypt your session, so it better be something unique!).
2021-01-25 19:48:52 +00:00
2019-05-18 08:24:22 +00:00
### Configuration with docker
2020-08-06 05:54:54 +00:00
If you run your bot using docker, you'll need to have the bot listen to incoming connections. The security is then handled by docker.
2019-05-18 08:24:22 +00:00
``` json
"api_server": {
"enabled": true,
"listen_ip_address": "0.0.0.0",
2021-05-15 13:52:02 +00:00
"listen_port": 8080,
"username": "Freqtrader",
"password": "SuperSecret1!",
//...
2019-05-18 08:24:22 +00:00
},
```
2021-10-06 18:09:08 +00:00
Make sure that the following 2 lines are available in your docker-compose file:
2019-05-18 08:24:22 +00:00
2021-01-25 19:48:52 +00:00
```yml
ports:
- "127.0.0.1:8080:8080"
2019-05-18 08:24:22 +00:00
```
2021-01-25 19:48:52 +00:00
!!! Danger "Security warning"
By using `8080:8080` in the docker port mapping, the API will be available to everyone connecting to the server under the correct port, so others may be able to control your bot.
2019-05-18 08:24:22 +00:00
2021-01-25 19:48:52 +00:00
## Rest API
2019-05-18 08:24:22 +00:00
2021-01-25 19:48:52 +00:00
### Consuming the API
2019-05-18 08:24:22 +00:00
You can consume the API by using the script `scripts/rest_client.py`.
2020-02-14 18:37:20 +00:00
The client script only requires the `requests` module, so Freqtrade does not need to be installed on the system.
2019-05-18 08:24:22 +00:00
``` bash
python3 scripts/rest_client.py <command> [optional parameters]
```
By default, the script assumes `127.0.0.1` (localhost) and port `8080` to be used, however you can specify a configuration file to override this behaviour.
2021-01-25 19:48:52 +00:00
#### Minimalistic client config
2019-05-18 08:24:22 +00:00
``` json
{
"api_server": {
"enabled": true,
"listen_ip_address": "0.0.0.0",
2021-05-15 13:52:02 +00:00
"listen_port": 8080,
"username": "Freqtrader",
"password": "SuperSecret1!",
//...
2019-05-18 08:24:22 +00:00
}
}
```
``` bash
python3 scripts/rest_client.py --config rest_config.json <command> [optional parameters]
```
2021-01-25 19:48:52 +00:00
### Available endpoints
2019-05-18 08:24:22 +00:00
2020-08-04 17:57:28 +00:00
| Command | Description |
|----------|-------------|
| `ping` | Simple command testing the API Readiness - requires no authentication.
2020-10-18 08:48:39 +00:00
| `start` | Starts the trader.
| `stop` | Stops the trader.
2020-08-04 17:57:28 +00:00
| `stopbuy` | Stops the trader from opening new trades. Gracefully closes open trades according to their rules.
2020-10-18 08:48:39 +00:00
| `reload_config` | Reloads the configuration file.
2021-04-20 19:23:37 +00:00
| `trades` | List last trades. Limited to 500 trades per call.
2021-04-05 17:32:55 +00:00
| `trade/<tradeid>` | Get specific trade.
2020-08-04 17:57:28 +00:00
| `delete_trade <trade_id>` | Remove trade from the database. Tries to close open orders. Requires manual handling of this trade on the exchange.
2020-10-18 08:48:39 +00:00
| `show_config` | Shows part of the current configuration with relevant settings to operation.
| `logs` | Shows last log messages.
| `status` | Lists all open trades.
| `count` | Displays number of trades used and available.
| `locks` | Displays currently locked pairs.
2021-03-01 18:50:39 +00:00
| `delete_lock <lock_id>` | Deletes (disables) the lock by id.
2020-10-18 08:48:39 +00:00
| `profit` | Display a summary of your profit/loss from close trades and some stats about your performance.
2022-04-08 05:15:05 +00:00
| `forceexit <trade_id>` | Instantly exits the given trade (Ignoring `minimum_roi`).
| `forceexit all` | Instantly exits all open trades (Ignoring `minimum_roi`).
2022-04-08 11:39:41 +00:00
| `forceenter <pair> [rate]` | Instantly enters the given pair. Rate is optional. (`force_entry_enable` must be set to True)
| `forceenter <pair> <side> [rate]` | Instantly longs or shorts the given pair. Rate is optional. (`force_entry_enable` must be set to True)
2020-10-18 08:48:39 +00:00
| `performance` | Show performance of each finished trade grouped by pair.
| `balance` | Show account balance per currency.
| `daily <n>` | Shows profit or loss per day, over the last n days (n defaults to 7).
2020-12-07 14:07:08 +00:00
| `stats` | Display a summary of profit / loss reasons as well as average holding times.
2020-10-18 08:48:39 +00:00
| `whitelist` | Show the current whitelist.
2020-08-04 17:57:28 +00:00
| `blacklist [pair]` | Show the current blacklist, or adds a pair to the blacklist.
| `edge` | Show validated pairs by Edge if it is enabled.
2020-09-13 18:09:54 +00:00
| `pair_candles` | Returns dataframe for a pair / timeframe combination while the bot is running. **Alpha**
| `pair_history` | Returns an analyzed dataframe for a given timerange, analyzed by a given strategy. **Alpha**
| `plot_config` | Get plot config from the strategy (or nothing if not configured). **Alpha**
| `strategies` | List strategies in strategy directory. **Alpha**
2020-09-17 05:53:22 +00:00
| `strategy <strategy>` | Get specific Strategy content. **Alpha**
2020-09-13 18:09:54 +00:00
| `available_pairs` | List available backtest data. **Alpha**
2020-10-18 08:48:39 +00:00
| `version` | Show version.
| `sysinfo` | Show informations about the system load.
| `health` | Show bot health (last bot loop).
2019-05-18 08:24:22 +00:00
2020-09-13 18:09:54 +00:00
!!! Warning "Alpha status"
Endpoints labeled with *Alpha status* above may change at any time without notice.
2019-05-18 08:24:22 +00:00
Possible commands can be listed from the rest-client script using the `help` command.
``` bash
python3 scripts/rest_client.py help
```
``` output
Possible commands:
2020-08-14 13:44:52 +00:00
available_pairs
Return available pair (backtest data) based on timeframe / stake_currency selection
:param timeframe: Only pairs with this timeframe available.
:param stake_currency: Only pairs that include this timeframe
2019-05-18 08:24:22 +00:00
balance
2020-08-14 13:44:52 +00:00
Get the account balance.
2019-05-18 08:24:22 +00:00
blacklist
2020-08-14 13:44:52 +00:00
Show the current blacklist.
2019-05-18 08:24:22 +00:00
:param add: List of coins to add (example: "BNB/BTC")
count
2020-08-14 13:44:52 +00:00
Return the amount of open trades.
2019-05-18 08:24:22 +00:00
daily
2021-04-05 17:34:01 +00:00
Return the profits for each day, and amount of trades.
2020-08-14 13:44:52 +00:00
2021-03-01 18:50:39 +00:00
delete_lock
Delete (disable) lock from the database.
:param lock_id: ID for the lock to delete
2020-08-14 13:44:52 +00:00
delete_trade
Delete trade from the database.
Tries to close open orders. Requires manual handling of this asset on the exchange.
:param trade_id: Deletes the trade with this ID from the database.
2019-05-18 08:24:22 +00:00
edge
2020-08-14 13:44:52 +00:00
Return information about edge.
2019-05-18 08:24:22 +00:00
forcebuy
2020-08-14 13:44:52 +00:00
Buy an asset.
2019-05-18 08:24:22 +00:00
:param pair: Pair to buy (ETH/BTC)
:param price: Optional - price to buy
2022-04-08 05:15:05 +00:00
forceenter
2022-01-26 19:07:58 +00:00
Force entering a trade
:param pair: Pair to buy (ETH/BTC)
:param side: 'long' or 'short'
:param price: Optional - price to buy
2022-04-08 05:15:05 +00:00
forceexit
Force-exit a trade.
2020-08-14 13:44:52 +00:00
2019-05-18 08:24:22 +00:00
:param tradeid: Id of the trade (can be received via status command)
:param ordertype: Order type to use (must be market or limit)
:param amount: Amount to sell. Full sell if not given
health
Provides a quick health check of the running bot.
2020-08-14 13:44:52 +00:00
2021-03-01 18:50:39 +00:00
locks
Return current locks
2020-08-14 13:44:52 +00:00
logs
Show latest logs.
2021-04-05 17:34:01 +00:00
:param limit: Limits log messages to the last <limit> logs. No limit to get the entire log.
2019-05-18 08:24:22 +00:00
pair_candles
Return live dataframe for <pair><timeframe>.
:param pair: Pair to get data for
:param timeframe: Only pairs with this timeframe available.
:param limit: Limit result to the last n candles.
pair_history
Return historic, analyzed dataframe
:param pair: Pair to get data for
:param timeframe: Only pairs with this timeframe available.
:param strategy: Strategy to analyze and get values for
:param timerange: Timerange to get data for (same format than --timerange endpoints)
2019-05-18 08:24:22 +00:00
performance
2020-08-14 13:44:52 +00:00
Return the performance of the different coins.
2019-05-18 08:24:22 +00:00
ping
simple ping
plot_config
Return plot configuration if the strategy defines one.
2019-05-18 08:24:22 +00:00
profit
2020-08-14 13:44:52 +00:00
Return the profit summary.
2019-05-18 08:24:22 +00:00
reload_config
2020-08-14 13:44:52 +00:00
Reload configuration.
2019-05-18 08:24:22 +00:00
2019-11-17 14:05:56 +00:00
show_config
2022-09-08 22:27:09 +00:00
2019-11-17 14:05:56 +00:00
Returns part of the configuration, relevant for trading operations.
2019-05-18 08:24:22 +00:00
start
2020-08-14 13:44:52 +00:00
Start the bot if it's in the stopped state.
2019-05-18 08:24:22 +00:00
2020-12-07 14:07:08 +00:00
stats
Return the stats report (durations, sell-reasons).
2019-05-18 08:24:22 +00:00
status
2020-08-14 13:44:52 +00:00
Get the status of open trades.
2019-05-18 08:24:22 +00:00
stop
2020-08-14 13:44:52 +00:00
Stop the bot. Use `start` to restart.
2019-05-18 08:24:22 +00:00
stopbuy
2020-08-14 13:44:52 +00:00
Stop buying (but handle sells gracefully). Use `reload_config` to reset.
strategies
Lists available strategies
2020-09-17 05:53:22 +00:00
strategy
Get strategy details
:param strategy: Strategy class name
2022-01-26 19:07:58 +00:00
sysinfo
Provides system information (CPU, RAM usage)
trade
Return specific trade
:param trade_id: Specify which trade to get.
2020-08-14 13:44:52 +00:00
trades
2021-04-20 19:23:37 +00:00
Return trades history, sorted by id
2020-08-14 13:44:52 +00:00
2021-04-20 19:23:37 +00:00
:param limit: Limits trades to the X last trades. Max 500 trades.
:param offset: Offset by this amount of trades.
2019-05-18 08:24:22 +00:00
version
2020-08-14 13:44:52 +00:00
Return the version of the bot.
2019-05-18 08:24:22 +00:00
whitelist
2020-08-14 13:44:52 +00:00
Show the current whitelist.
2019-05-18 08:24:22 +00:00
```
2020-05-10 14:14:35 +00:00
2022-09-08 22:27:09 +00:00
### Message WebSocket
The API Server includes a websocket endpoint for subscribing to RPC messages from the freqtrade Bot.
This can be used to consume real-time data from your bot, such as entry/exit fill messages, whitelist changes, populated indicators for pairs, and more.
This is also used to setup [Producer/Consumer mode](producer-consumer.md) in Freqtrade.
2022-09-08 22:27:09 +00:00
Assuming your rest API is set to `127.0.0.1` on port `8080`, the endpoint is available at `http://localhost:8080/api/v1/message/ws`.
2022-09-09 16:56:54 +00:00
To access the websocket endpoint, the `ws_token` is required as a query parameter in the endpoint URL.
2022-09-22 17:58:38 +00:00
To generate a safe `ws_token` you can run the following code:
2022-09-08 22:27:09 +00:00
``` python
>>> import secrets
2022-09-09 16:56:54 +00:00
>>> secrets.token_urlsafe(25)
'hZ-y58LXyX_HZ8O1cJzVyN6ePWrLpNQv4Q'
```
You would then add that token under `ws_token` in your `api_server` config. Like so:
``` json
"api_server": {
"enabled": true,
"listen_ip_address": "127.0.0.1",
"listen_port": 8080,
"verbosity": "error",
"enable_openapi": false,
"jwt_secret_key": "somethingrandom",
"CORS_origins": [],
"username": "Freqtrader",
"password": "SuperSecret1!",
"ws_token": "hZ-y58LXyX_HZ8O1cJzVyN6ePWrLpNQv4Q" // <-----
},
2022-09-08 22:27:09 +00:00
```
2022-09-09 16:59:38 +00:00
You can now connect to the endpoint at `http://localhost:8080/api/v1/message/ws?token=hZ-y58LXyX_HZ8O1cJzVyN6ePWrLpNQv4Q`.
2022-09-08 22:27:09 +00:00
2022-09-22 17:58:38 +00:00
!!! Danger "Reuse of example tokens"
2022-09-08 22:27:09 +00:00
Please do not use the above example token. To make sure you are secure, generate a completely new token.
#### Using the WebSocket
2022-09-08 22:30:31 +00:00
Once connected to the WebSocket, the bot will broadcast RPC messages to anyone who is subscribed to them. To subscribe to a list of messages, you must send a JSON request through the WebSocket like the one below. The `data` key must be a list of message type strings.
2022-09-08 22:27:09 +00:00
``` json
{
"type": "subscribe",
"data": ["whitelist", "analyzed_df"] // A list of string message types
}
```
2022-09-22 17:58:38 +00:00
2022-09-09 16:56:54 +00:00
For a list of message types, please refer to the RPCMessageType enum in `freqtrade/enums/rpcmessagetype.py`
2022-09-08 22:27:09 +00:00
Now anytime those types of RPC messages are sent in the bot, you will receive them through the WebSocket as long as the connection is active. They typically take the same form as the request:
``` json
{
"type": "analyzed_df",
"data": {
"key": ["NEO/BTC", "5m", "spot"],
"df": {}, // The dataframe
"la": "2022-09-08 22:14:41.457786+00:00"
}
}
```
2022-11-21 19:52:18 +00:00
#### Reverse Proxy and Websockets
There are some quirks when using a reverse proxy with the message websocket endpoint. The message websocket endpoint keeps a long-running connection open between the Rest API and the client. It's built on top of HTTP and uses the HTTP Upgrade mechanism to change from HTTP to WebSockets during connection. There are some challenges that a reverse proxy faces when supporting WebSockets, such as WebSockets are a hop-by-hop protocol, so when a proxy intercepts an Upgrade request from the client it needs to send it's own Upgrade request to the server, including appropriate headers. Also, since these connections are long lived, the proxy needs to allow these connections to remain open.
2022-11-22 14:17:57 +00:00
When using Nginx, the following configuration is required for WebSockets to work (Note this configuration isn't complete, it's missing some information and can not be used as is):
2022-11-21 19:52:18 +00:00
```
2022-11-22 14:17:57 +00:00
http {
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
...
server {
...
location / {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Host $host;
}
}
}
2022-11-21 19:52:18 +00:00
```
To configure your reverse proxy, see it's documentation for proxying websockets.
- **Traefik**: Traefik supports websockets out of the box, see the [documentation](https://doc.traefik.io/traefik/)
- **Caddy**: Caddy v2 supports websockets out of the box, see the [documentation](https://caddyserver.com/docs/v2-upgrade#proxy)
2021-01-25 19:48:52 +00:00
### OpenAPI interface
To enable the builtin openAPI interface (Swagger UI), specify `"enable_openapi": true` in the api_server configuration.
2022-08-21 06:23:07 +00:00
This will enable the Swagger UI at the `/docs` endpoint. By default, that's running at http://localhost:8080/docs - but it'll depend on your settings.
2021-01-25 19:48:52 +00:00
### Advanced API usage using JWT tokens
2020-05-10 14:14:35 +00:00
!!! Note
The below should be done in an application (a Freqtrade REST API client, which fetches info via API), and is not intended to be used on a regular basis.
2020-05-10 14:14:35 +00:00
Freqtrade's REST API also offers JWT (JSON Web Tokens).
2020-05-10 14:14:35 +00:00
You can login using the following command, and subsequently use the resulting access_token.
``` bash
> curl -X POST --user Freqtrader http://localhost:8080/api/v1/token/login
{"access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1ODkxMTk2ODEsIm5iZiI6MTU4OTExOTY4MSwianRpIjoiMmEwYmY0NWUtMjhmOS00YTUzLTlmNzItMmM5ZWVlYThkNzc2IiwiZXhwIjoxNTg5MTIwNTgxLCJpZGVudGl0eSI6eyJ1IjoiRnJlcXRyYWRlciJ9LCJmcmVzaCI6ZmFsc2UsInR5cGUiOiJhY2Nlc3MifQ.qt6MAXYIa-l556OM7arBvYJ0SDI9J8bIk3_glDujF5g","refresh_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1ODkxMTk2ODEsIm5iZiI6MTU4OTExOTY4MSwianRpIjoiZWQ1ZWI3YjAtYjMwMy00YzAyLTg2N2MtNWViMjIxNWQ2YTMxIiwiZXhwIjoxNTkxNzExNjgxLCJpZGVudGl0eSI6eyJ1IjoiRnJlcXRyYWRlciJ9LCJ0eXBlIjoicmVmcmVzaCJ9.d1AT_jYICyTAjD0fiQAr52rkRqtxCjUGEMwlNuuzgNQ"}
> access_token="eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1ODkxMTk2ODEsIm5iZiI6MTU4OTExOTY4MSwianRpIjoiMmEwYmY0NWUtMjhmOS00YTUzLTlmNzItMmM5ZWVlYThkNzc2IiwiZXhwIjoxNTg5MTIwNTgxLCJpZGVudGl0eSI6eyJ1IjoiRnJlcXRyYWRlciJ9LCJmcmVzaCI6ZmFsc2UsInR5cGUiOiJhY2Nlc3MifQ.qt6MAXYIa-l556OM7arBvYJ0SDI9J8bIk3_glDujF5g"
# Use access_token for authentication
2020-05-10 14:14:35 +00:00
> curl -X GET --header "Authorization: Bearer ${access_token}" http://localhost:8080/api/v1/count
```
Since the access token has a short timeout (15 min) - the `token/refresh` request should be used periodically to get a fresh access token:
2020-05-10 14:14:35 +00:00
``` bash
> curl -X POST --header "Authorization: Bearer ${refresh_token}"http://localhost:8080/api/v1/token/refresh
{"access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1ODkxMTk5NzQsIm5iZiI6MTU4OTExOTk3NCwianRpIjoiMDBjNTlhMWUtMjBmYS00ZTk0LTliZjAtNWQwNTg2MTdiZDIyIiwiZXhwIjoxNTg5MTIwODc0LCJpZGVudGl0eSI6eyJ1IjoiRnJlcXRyYWRlciJ9LCJmcmVzaCI6ZmFsc2UsInR5cGUiOiJhY2Nlc3MifQ.1seHlII3WprjjclY6DpRhen0rqdF4j6jbvxIhUFaSbs"}
```
2020-06-24 18:32:19 +00:00
2021-01-25 19:48:52 +00:00
### CORS
2020-06-24 18:32:19 +00:00
2021-11-01 10:07:06 +00:00
This whole section is only necessary in cross-origin cases (where you multiple bot API's running on `localhost:8081`, `localhost:8082`, ...), and want to combine them into one FreqUI instance.
2020-06-24 18:32:19 +00:00
2021-11-01 10:07:06 +00:00
??? info "Technical explanation"
All web-based front-ends are subject to [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) - Cross-Origin Resource Sharing.
Since most of the requests to the Freqtrade API must be authenticated, a proper CORS policy is key to avoid security problems.
Also, the standard disallows `*` CORS policies for requests with credentials, so this setting must be set appropriately.
Users can allow access from different origin URL's to the bot API via the `CORS_origins` configuration setting.
It consists of a list of allowed URL's that are allowed to consume resources from the bot's API.
2020-06-24 18:32:19 +00:00
Assuming your application is deployed as `https://frequi.freqtrade.io/home/` - this would mean that the following configuration becomes necessary:
2020-06-24 18:32:19 +00:00
```jsonc
{
//...
"jwt_secret_key": "somethingrandom",
"CORS_origins": ["https://frequi.freqtrade.io"],
//...
}
```
2021-11-01 10:07:06 +00:00
In the following (pretty common) case, FreqUI is accessible on `http://localhost:8080/trade` (this is what you see in your navbar when navigating to freqUI).
![freqUI url](assets/frequi_url.png)
The correct configuration for this case is `http://localhost:8080` - the main part of the URL including the port.
```jsonc
{
//...
"jwt_secret_key": "somethingrandom",
"CORS_origins": ["http://localhost:8080"],
//...
}
```
2020-06-24 18:32:19 +00:00
!!! Note
We strongly recommend to also set `jwt_secret_key` to something random and known only to yourself to avoid unauthorized access to your bot.
2022-11-21 02:19:28 +00:00
2022-11-21 19:52:18 +00:00
<!--
2022-11-21 02:19:28 +00:00
### Using SSL/TLS
SSL/TLS is used to provide security and encrypt network traffic. Freqtrade does not directly support SSL, but you can easily accomplish this with a reverse proxy such as Nginx or Traefik. Below are some steps to help you get started on setting one up for your bot. For the sake of simplicity, we will use a native installation of Nginx and certbot.
**Prerequisites**
Before starting this tutorial, you will need a few things.
- A Freqtrade bot set up and running
- A registered domain name, e.g. myftbot.com
- A DNS A record for the top level domain pointing to your server's public IP
**Step 1: Installing Nginx and Certbot**
Once you have all of the prerequisites, the first step is to get Nginx installed on your system. This tutorial assumes the use of Ubuntu 20.04, though you can find your linux distro's package commands via a search engine. First, update your local package index so that you have access to the most recent package listings then install Nginx:
``` bash
> sudo apt update
> sudo apt install nginx
```
After accepting the installation, Nginx and any dependencies will be installed to your system and automatically started. You can check it is running with `systemd`:
``` bash
> sudo systemctl status nginx
● nginx.service - A high performance web server and a reverse proxy server
Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
Active: active (running) since Wed 2022-11-16 12:09:27 MST; 4 days ago
Docs: man:nginx(8)
Process: 1026 ExecStartPre=/usr/sbin/nginx -t -q -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
Process: 1106 ExecStart=/usr/sbin/nginx -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
Main PID: 1107 (nginx)
Tasks: 5 (limit: 6929)
Memory: 5.7M
CGroup: /system.slice/nginx.service
├─1107 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
├─1108 nginx: worker process
├─1109 nginx: worker process
├─1110 nginx: worker process
└─1111 nginx: worker process
```
Next you need to install certbot which will handle all of the certificate automation for your web server and domain. To install certbot it is required to have `snapd` on Ubuntu. If you haven't installed it yet, please review the instructions on [snapcraft's site for installation](https://snapcraft.io/docs/installing-snapd/).
Once you are good to go, ensure your snapd version is up to date:
``` bash
> sudo snap install core; sudo snap refresh core
```
If you have any Certbot packages installed via your package manager, you should remove them before installing Certbot:
``` bash
> sudo apt remove certbot
```
Finally, install Certbot and prepare the Certbot command.
``` bash
> sudo snap install --classic certbot
> sudo ln -s /snap/bin/certbot /usr/bin/certbot
```
**Step 2: Adjust the firewall**
The next step is to allow HTTP and HTTPS traffic through your firewall. This is different for each depending on which firewall you use, and how you have it configured. In this example, we are using `ufw`.
We'll start by enabling `ufw` if it isn't already:
``` bash
> sudo ufw enable
```
You can list the application configurations that ufw knows how to work with
``` bash
> sudo ufw app list
Available applications:
CUPS
Nginx Full
Nginx HTTP
Nginx HTTPS
```
As you can see in the output, there are 3 profiles available for Nginx:
- **Nginx Full**: This profile opens both port 80 (normal web traffic) and port 443 (SSL/TLS traffic)
- **Nginx HTTP**: This profile only opens port 80 (normal web traffic)
- **Nginx HTTPS**: This profile only opens port 443 (SSL/TLS traffic)
We will configure the firewall to allow both port 80 and 443:
``` bash
> sudo ufw allow 'Nginx Full'
```
You can verify the change by typing:
``` bash
> sudo ufw status
Status: active
To Action From
-- ------ ----
Nginx HTTPS ALLOW Anywhere
Nginx Full ALLOW Anywhere
Nginx HTTPS (v6) ALLOW Anywhere (v6)
Nginx Full (v6) ALLOW Anywhere (v6)
```
**Step 3: Configuring Nginx**
Using your favorite editor, edit the default nginx configuration. In our case, it'll be under `/etc/nginx/conf.d/default.conf`:
``` bash
> sudo vim /etc/nginx/conf.d/default.conf
```
Add a section to your configuration like this:
```
server {
server_name myftbot.com;
location / {
proxy_pass http://localhost:8080;
}
}
```
Make sure to change `localhost` and `8080` to what you have set in your `api_server` configuration for your bot.
Verify your nginx config file syntax and make sure there are no errors:
``` bash
> sudo nginx -t
```
Finally you can reload nginx to get the new configuration changes:
``` bash
> sudo systemctl reload nginx
```
!!! Note
The `reload` command forces Nginx to read the new configuration without interrupting any connections. The `restart` command restarts the whole nginx service.
**Step 4: Getting the certificates**
Certbot already comes with an easy way to setup Nginx with SSL/TLS th automatically changes your configuration file with the required fields:
``` bash
> sudo certbot --nginx
```
You will be prompted for some information such as your email (To receive updates about your certificates), the domain you pointed to the server, and agree to the TOS and optional newsletter. You can also set to redirect HTTP traffic to HTTPS, removing HTTP access.
You can now test your SSL setup by using curl to make a request to your bot's Rest API:
``` bash
> curl https://myftbot.com/api/v1/ping
{'status': 'pong'}
```
2022-11-21 19:52:18 +00:00
If you see a pong response then everything is working and you have successfully set up SSL/TLS termination for your bot. -->