#niginx.conf file
server {
listen 443 ssl;
server_name server1;
ssl_certificate cert.key;
ssl_certificate cert.crt;
ssl_ciphers HIGH:!aNULL:!MD5;
location /api/embed/ {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_pass http://server1:3030/;
proxy_redirect off;
proxy_read_timeout 240s;
}
}
------------------------------------------------------- I
The metabase is running on server1 at http port set as 3030
Note; In metabse it is http. The url is server1:3030
I am using metabase.jar. Running the command such as
set MB_JETTY_PORT=3030
java -jar metabase.jar
Now at the browser entry of https://server1
results in ssl record long .... ssl error at the browser,
My environment is
Windows 10.
The java version is 15.
At the host file there is an entry with IPaddress server1
Similar doubts in this forum the kind of answer recommended is to ask the help of web app developers. I am a web app developer. Another answers are Ubuntu based solutions. I may not able to go for commercial license. So this topic.
Any mistake I am doing here at setting Metabase server. Any help thanks in advance.