> I couldn't see how to use the new feature -- "Recalculate Formula’ mass action for admin"
From the list view, you need to select records first.
From the list view, you need to select records first.
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
upstream websocket {
server 127.0.0.1:8080;
}
location /wss {
proxy_pass [URL]http://websocket;[/URL]
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
Comment