...
- General Settings > System Administration Settings > Run Process Primary Key option.
- Hash Variable > Workflow Process Hash Variable
Configuring Nginx To Proxy WebSocket
WebSocket is used by Joget DX for App Console Logs menu.
Refer to the following links to configure your Nginx to proxy WebSocket:
- http://nginx.org/en/docs/http/websocket.html
- https://www.serverlab.ca/tutorials/linux/web-servers-linux/how-to-configure-nginx-for-websockets/
- https://stackoverflow.com/questions/12102110/nginx-to-reverse-proxy-websockets-and-enable-ssl-wss
Here is a simple sample configuration:
Code Block |
---|
server {
listen 80;
listen [::]:80;
server_name myjoget.com;
location /jw/web/applog/ {
proxy_pass http://localhost:8080/jw/web/applog/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
location / {
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://localhost:8080/;
}
} |
Perform Thorough App Testing
...