Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for subdir when running behind a reverse proxy #320

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Adding missing documentation of custom_live_log_socket_url parameter
gsahbi committed Sep 11, 2020
commit 01f0c0f0c3e0201419f3735dfa2a830e524d72dd
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -587,6 +587,15 @@ Setting this parameter to `true` will force Cronicle's Web UI to connect to the

This property only takes effect if [web_direct_connect](#web_direct_connect) is also set to `true`.

### custom_live_log_socket_url
This is an fancy configuration to provide a url for web socket which live log needs to connect.
Notice this is useful for single-master system behind an LB.
Socket URL should be like this, e.g.
```js
"custom_live_log_socket_url": "http://127.0.0.1:8888"
```
Feel free to change the ip and the port.

### socket_io_transports

This is an advanced configuration property that you will probably never need to worry about. This allows you to customize the [socket.io transports](https://socket.io/docs/client-api/) used to connect to the server for real-time updates. By default, this property is set internally to an array containing the `websocket` transport only, e.g.