Switching to Openlitespeed from NGINX

#1
Hi,

I used ols years ago when it was first released, I'm now tempted to switch back over but i've got a few questions.

Currently with nginx i store my files in the following folders:

/var/www/site1
/var/www/site2
/var/www/site3

Where do I store them with ols?

Also when i've uploaded my files to the server i run the following command so i don't need set mess about setting file permissions. etc

chown -R www-data:www-data /var/www

I'm guessing ols dosn't use www-data, so what would be the equivalent command with ols?
 

Pong

Administrator
#2
You can still store the files to the same location and define them to different virtual host document root in ols.

For ownership, ols will run as nobody:nobody by default if no overriding. hence you can do
chown -R nobody:nobody /var/www
 
Top