Problem opening url with Profoundui Mobile
Posted: Mon Nov 02, 2020 8:00 am
Good morning.
We are having some issues opening a URL with the ProfoundUI application.
When we try to access via web, the following error appears.
(see image Capture1)
And using the application on a mobile phone (Android), the following error appears.
(see image Capture2)
We have a redirect set up in a NGINX Proxy that translates the public address https://celadores.nisa.es to the internal URL. Below I attach the redirect.
server {
listen 443;
server_name celadores.nisa.es;
ssl_certificate "/usr/local/nginx/conf/nisa.crt";
ssl_certificate_key "/usr/local/nginx/conf/server.key";
ssl on;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 180m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
location /profoundui {
limit_req zone=req_zone_30 burst=10 nodelay;
client_max_body_size 100M;
proxy_pass https://i5nisa.nisa.es/profoundui/start?pgm=NISA/CELMNU;
proxy_set_header Host $host;
auth_basic "Private Property";
auth_basic_user_file /etc/nginx/.htpasswdi5nisa;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_redirect http:// https://;
}
}
We have reviewed everything, but we cannot see the fault. At ProfoundUI level, can you help us to see if everything is OK?
Thank you.
We are having some issues opening a URL with the ProfoundUI application.
When we try to access via web, the following error appears.
(see image Capture1)
And using the application on a mobile phone (Android), the following error appears.
(see image Capture2)
We have a redirect set up in a NGINX Proxy that translates the public address https://celadores.nisa.es to the internal URL. Below I attach the redirect.
server {
listen 443;
server_name celadores.nisa.es;
ssl_certificate "/usr/local/nginx/conf/nisa.crt";
ssl_certificate_key "/usr/local/nginx/conf/server.key";
ssl on;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 180m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
location /profoundui {
limit_req zone=req_zone_30 burst=10 nodelay;
client_max_body_size 100M;
proxy_pass https://i5nisa.nisa.es/profoundui/start?pgm=NISA/CELMNU;
proxy_set_header Host $host;
auth_basic "Private Property";
auth_basic_user_file /etc/nginx/.htpasswdi5nisa;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_redirect http:// https://;
}
}
We have reviewed everything, but we cannot see the fault. At ProfoundUI level, can you help us to see if everything is OK?
Thank you.