diskover-community: Can't select an index

In the index selection screen, I get a message 4 indices found but I don’t see any of them, so I can’t pick them.

image

About this issue

  • Original URL
  • State: closed
  • Created 2 years ago
  • Comments: 22

Most upvoted comments

I was having issues with this page as well and solved it by adding the following two lines to diskover’s nginx config file (specifically config/nginx/site-confs/default.conf):

fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;

I added these lines to the php location config (location ~ ^(.+\.php)(.*)$)

I was having issues with this page as well and solved it by adding the following two lines to diskover’s nginx config file (specifically config/nginx/site-confs/default.conf):

fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;

I added these lines to the php location config (location ~ ^(.+\.php)(.*)$)

Ran into the issue when deploying on Unraid and this fixed the issue. Thanks!

@ChristopherHaws Thanks for that! Just tried it, and yes - it is a workaround