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

[MINOR] - Render file previews when using reverse proxy #122

Open
Zyrohex opened this issue Oct 17, 2021 · 0 comments
Open

[MINOR] - Render file previews when using reverse proxy #122

Zyrohex opened this issue Oct 17, 2021 · 0 comments
Labels
minor feature Feature request inline with current graphing capabilites

Comments

@Zyrohex
Copy link

Zyrohex commented Oct 17, 2021

Have you checked whether this feature is not already on the project board?
Yes - there is the feature for publishing to github pages, which may provide an alternative solution, but I would still like to see support for reverse proxies with file previews.

Is your feature request related to a problem? Please describe.
Yes - I have to use emacs over X11 from a local VM to work-around some encryption issues on my work system (emacs runs very slow on my host OS as a result making it unusable), but I cannot access the graph since its being hosted from the VM rather than my local system. Configuring a reverse proxy server works for the most part that the website is viewable, and you can see the graph, but file previews fail to render their content.

Describe the solution you'd like
Add support so that the file previews can be served over a reverse proxy.

Additional context
Simple reverse proxy config:

server {
        listen   80;
        server_name     192.168.1.181;

        location / {
                proxy_pass      http://localhost:35901/;
                proxy_set_header Host $http_host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }
}

@Zyrohex Zyrohex added the minor feature Feature request inline with current graphing capabilites label Oct 17, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
minor feature Feature request inline with current graphing capabilites
Projects
None yet
Development

No branches or pull requests

1 participant