Use Nginx for joget
I have a jogetV5 application server deploy in my intranet, and i use nginx for internet access. But i get below problem:
- User can login and use, but Admin cannot edit the form,and get error:
My niginx conf:location / {
### proxy headers ###
proxy_set_header X-Forwarded-By $server_addr:$server_port;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-NginX-Proxy true;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_headers_hash_max_size 51200;
proxy_headers_hash_bucket_size 6400;
proxy_cache my_cache;
proxy_cache_valid 200 304 301 302 8h;
proxy_cache_valid 404 1m;
proxy_cache_valid any 2d;
expires 30d;
proxy_cache_use_stale error timeout updating http_500 http_502 http_503 http_504;
proxy_cache_key $host$uri$is_args$args;
proxy_pass https://FQDN:443;
proxy_ssl_session_reuse off;
proxy_redirect https://FQDN/jw https://IPAddress; - IE 11 can login and use, but chrome and firefox cannot login.

