Everything 1.5a HTTP Server issues

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
Darthagnon
Posts: 12
Joined: Tue Dec 31, 2019 2:08 pm

Everything 1.5a HTTP Server issues

Post by Darthagnon »

I tried using http_server_show_drive_labels=1 in the ini to make the HTTP Server plugin for Everything 1.5a show drive names, but it doesn't seem to work. Is this a missing feature, or has the config changed?

I'm also trying to figure out how to reverse proxy the Everything HTTP server behind nginx, but custom images/CSS turn up 404 when I manage to successfully reverse proxy the server using:

Code: Select all

server {
        listen       80 default_server;
        server_name  _;
location /search/ {
            proxy_pass  http://localhost:8085/;
            }
}
(of course there's more in nginx.conf, but those seemed the only relevant bits)
void
Developer
Posts: 15478
Joined: Fri Oct 16, 2009 11:31 pm

Re: Everything 1.5a HTTP Server issues

Post by void »

The http_server_show_drive_labels setting no longer exists in your Everything.ini

This setting has moved to your plugins.ini
(plugins-1.5a.ini for the alpha version)

This setting is located under the [http_server64.dll] section and is now called:
show_drive_labels=1



The reverse proxy works for webpages, but not images?
-I'm not sure whats going on there..
Please check the HTTP requests in the Everything Debug Console.
Post Reply