rashevskyv / dbi

Author is duckbill
2.19k stars 93 forks source link

Stuck in "Calculating install size..." #353

Closed laleeroy closed 2 months ago

laleeroy commented 3 months ago

So Im trying to access my file listing directory using command python -m http.server ports, but when I click some NSP to install, it just stuck in Calculating install size..., when I do it in mobile browser, It gets downloaded no problem.

Someone help please

skalg commented 2 months ago

Hello, i was getting the same issue with python simple http server. Switch to apache and it works flawlessly !

here's a simple docker-compose.yml for it :

version: '3'

services:
  apache:
    image: httpd:latest
    ports:
      - "8080:80"
    volumes:
      - /path/to/expose:/usr/local/apache2/htdocs/:ro
laleeroy commented 2 months ago

Hello, i was getting the same issue with python simple http server. Switch to apache and it works flawlessly !

here's a simple docker-compose.yml for it :

version: '3'

services:
  apache:
    image: httpd:latest
    ports:
      - "8080:80"
    volumes:
      - /path/to/expose:/usr/local/apache2/htdocs/:ro

Yes I also switch to apache, thanks for the comment anyway