Thank you for your help. Before going to bed last night I was digging through the OLS Dockerfile repo and looked at the entrypoint.sh script.
https://github.com/litespeedtech/ols-dockerfiles
I realised that if conf or admin-conf are empty, the script will copy in files from the relevant .conf...
I'm learning / testing about Docker and would like to run OLS as a container. I'm using Ubuntu 24 LTS with Docker 29.02.
If I run this command the container starts and I can get to the Webadmin page on port 7080
docker run --name openlitespeed -d -p 7080:7080 -p 80:80 -p 443:443 -it...
I might have the answer myself having been poking around the OLS Admin GUI and noticed that on the Compile PHP tool, the default parameters listed these modules
--with-mysqli --with-zlib --enable-gd --enable-shmop --enable-sockets --enable-sysvsem --enable-sysvshm --enable-mbstring --with-iconv...
Hi,
I'm just having my first look at OLS and have an Ubuntu 24.04.3 VM running (it's an Oracle Cloud ARM instance).
So far I've not done much:
sudo apt update
sudo apt upgrade
sudo wget -O - https://repo.litespeed.sh | sudo bash
sudo apt-get -y install openlitespeed
All good to that point...