Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding new parameter for web server base path #1171

Open
jesjimher opened this issue Oct 23, 2017 · 7 comments
Open

Adding new parameter for web server base path #1171

jesjimher opened this issue Oct 23, 2017 · 7 comments

Comments

@jesjimher
Copy link

jesjimher commented Oct 23, 2017

It would be nice if a parameter existed to specify a web context for glances when it's running as a web server (-w), so that listening URL would be http://localhost:port/context. Something like:

$ glances -w --web-base-path myglances
Glances web server started on http://0.0.0.0:61208/myglances/

It would make Apache or Nginx configuration much easier when glances must be executed behind a proxy. Right now it's possible to make it work, but it's pretty tricky and doesn't work for everyone.

Thanks a lot for the great work, glances is great!

@nicolargo
Copy link
Owner

@notFloran : What is the impact of such enhancement in the Web UI code ?

@notFloran
Copy link
Collaborator

@nicolargo I don't know, I will try to make a POC and see if that broke something

@notFloran
Copy link
Collaborator

@nicolargo We need to update the wiki https://github.com/nicolargo/glances/wiki/Reverse-proxy-to-the-Glances-Web-UI

Since the 2.11 :

location / {
  if ($http_referer ~ "^https?://[^/]+/glances"){
    rewrite ^/(.*) /glances/$1 redirect;
  }
}

and

location / {
        if ($http_referer ~ "^https?://[^/]+/glances"){
                rewrite ^/(.*) https://$http_host/glances/$1 redirect;
        }
}

are useless

@nicolargo
Copy link
Owner

Done ! Can you have a look on the Wiki and check that the configuration is fine ?

@notFloran
Copy link
Collaborator

For the issue I see the following problem:

  • with a web-base-path argument all routes of bottle (webui and API) will be prefixed
  • in the 3.0 roadmap I see that client/server mode will use the REST API

So we can have the following setup:

  • server 1:
    • no web-base-path-> API available at IP:61208/api
  • server 2:
    • web-base-path on -> API available at IP:61208/my-base-web-path/api

Currently to connect to the server we execute : glances -c <ip>.

With the new web-base-path we need something like glances -c <ip> --web-base-path <web_base_path> or glances -c <url_of_the_api>

@notFloran
Copy link
Collaborator

Done ! Can you have a look on the Wiki and check that the configuration is fine ?

nginx config is ok, for apache I have not tested but it seems ok

@nicolargo
Copy link
Owner

@notFloran completely agree with your last comment. Concerning the Glances 3.0 roadmap, i am not sure that the Restful API will replace the XML/RPC. The bandwidth consumption between a server and a client is *10 between the RPC and the Restful. Before switching, i have to find a way to optimize and reduce the bitrate.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants