Debian 10
Install core
Detailed build instructions are available on our git repositoryInstall the frontend
Install NGINX
user@evqueue:~# sudo apt-get install nginx
Go to the document root and extract the source
If you do not intend to develop the frontend, download it from downloads section and unzip it in your document root. Then adjust configuration in conf/cluster.json.
To build frontend and work on it, please follow these instructions
You can now access evQueue web interface.
Default user and password is admin / admin
Using nginx as a reverse proxy from Websockets
Add the following section to your nginx server configuration file :
location /ws { # specific route to avoid conflict with the static assets
proxy_pass http://localhost:5001; # evqueue node port
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
You can the use a configuration uri like ws://hostname/ws or wss://hostname/ws if using SSL.