Wp, dont start with OLS

#1
Hello everyone!
Спробував встановити OLS за допомогою цього (https://github.com/litespeedtech/ols-dockerfiles) сховище і це (https://github.com/litespeedtech/ols-docker-env/tree/master) і коли localhost / html порожній, все працює нормально, я отримую 404. Але коли я додаю туди файл index.php, сторінка не відповідає довго, а потім відображається помилка 503. Я вже надав ВСІ права на файл, він все ще не допоміг. Хто може сказати? Судячи з посібника, все повинно вийти з коробки, але це не так.
1696511721394.png
1696511706583.png
1696511681827.png
 

Cold-Egg

Administrator
#4
#5
@Im_Vladyslav

I see, the reason is, that the readme you followed is too old (committed 2 years ago). You might want to use v1.7.16-lsphp81 or above.

Remove all containers and images, start over again by using https://github.com/litespeedtech/ols-docker-env and it should work out of the box.

Default parameters can be found in the .env file, https://github.com/litespeedtech/ols-docker-env/blob/master/.env

Let me know if you have any questions.
The fact is that I have already tried different versions, but the result is the same everywhere. It's funny that "lsws" works as it should out of the box, but "ols" doesn't want to do this
 
#8
what index.php contain inside?

PHP:
<?php phpinfo();

I created the document in 2 ways, but it did nothing
1:
echo '<?php phpinfo();' > localhost/html/index.php
2: manually
<?php// Show all information, defaults to INFO_ALL
phpinfo();// Show just the module information.
// phpinfo(8) yields identical results.
phpinfo(INFO_MODULES);?>
 
Top