Repetier-Server with ngnix reverse proxy show a blank welcome page
Hi,
I followed the link https://www.repetier-server.com/webserver-access-repetier-server/ to add a reverse proxy for accessing RepetierServer by https.
Installation and configuration of nginx was ok but when I try to go to https://<myIP> I see only the RepetierServer welcome Page with no user identification.
Just a blank Page with, on top, a blu line with the RepetierServer icon, version label and following icons: home, fullscreen, config, and language.
No way to go over.
there is some other think I need to do?
I followed the link https://www.repetier-server.com/webserver-access-repetier-server/ to add a reverse proxy for accessing RepetierServer by https.
Installation and configuration of nginx was ok but when I try to go to https://<myIP> I see only the RepetierServer welcome Page with no user identification.
Just a blank Page with, on top, a blu line with the RepetierServer icon, version label and following icons: home, fullscreen, config, and language.
No way to go over.
there is some other think I need to do?
Comments
Regards
Rosario
ok. I'll try soon.
Thanks
8.6
nginx version: nginx/1.6.2
server {
server_name hidden.to.public;
listen 80;
client_max_body_size 1000m;
proxy_pass http://192.168.1.254:3344/;
}
location /socket/ {
proxy_pass http://127.0.0.1:3344/socket/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 86400;
}
# printer frontend does not require password, so we forbid it from external
location /mod/front/ {
deny all;
}
location /modules/front2/ {
deny all;
}
}
I configured nginx as described and accessinng it through a https connection works perfectly. I just need to use latest version.
Also pointing it when I'm in my office (browser have an http proxy configured) I can see my printer server.
May be I had problem in my first connection due to cache/certificate.
next day I was in my office all worked fine without any change.