I make some improvements: using following server block:
server {
listen 8888;
server_name modem;
location ~ /(.*) {
proxy_pass http://$1;
}
}
It seems to be working but something is missing.
I can see that my browser is receiving data , and set the tab tittle but it can not complete all the web page.
In other cases it prints part of the page.
I dont know if the problem is related to javascript , routing ...
Any idea is wellcome.
Leandro.
server {
listen 8888;
server_name modem;
location ~ /(.*) {
proxy_pass http://$1;
}
}
It seems to be working but something is missing.
I can see that my browser is receiving data , and set the tab tittle but it can not complete all the web page.
In other cases it prints part of the page.
I dont know if the problem is related to javascript , routing ...
Any idea is wellcome.
Leandro.