tyteen4a03
Well-known member
Are there any free hosting panels that work with OpenLiteSpeed?
Do you need OLS?
For the dumber users, unfortunately it will be a yes.The question should be, do you need a panel.
OLS works very well, use it on several sites with no issues.
I did not find anything when I used OLS. Do you need OLS? I used it two years ago and got massive problems. I would take a look into nginx. It is very advanced plus you get the cache for free.
Yes, it's fairly stable (I'm still having some issues on one site with Debian - my other site I had to go back to nginx for stability).OLS works very well, use it on several sites with no issues.
That working with Debian yet?
SoonThat working with Debian yet?
yeah, yeah.. I keep hearing that or "it's under consideration"...Soon
For the dumber users, unfortunately it will be a yes.
Right now I settled with Ajenti and configure OLS separately, I was just wondering if there are better-integrated solutions that I missed.
I am well aware of nginx, but the lack of easy URL rewriting is unacceptable in my use case.
There's no way to rewrite URLs on a directory level.Uhh... what do you mean lack of easy url rewriting?
I rewrite URLs in nginx all the time...
Are you saying you can have nginx config files per directory?Uhh... put a rewrite in a location block
Nearly anything you can do in a .htaccess file at directory level you can instead do in location blocks at directory level
Not precisely.Are you saying you can have nginx config files per directory?
I mean that users cannot place their own configuration files inside their own folders wherever or whenever they want, something .htaccess is designed for (I think?).Not precisely.
Nginx only uses one configuration file.
It's separated into sub categories
You have:
global
http
server
location
location can be inside of another location
location can apply to a specific directory
For example, if I have example.com/cats, and I need to rewrite it to example.com/dogs/stuff
inside http
inside server
location /cats {
rewrite code goes here
}
If you want
location / {
stuff goes here
} to apply all of it's rules down to /cats, you would do
location / {
stuff goes here
location /cats {
directory level stuff here
}
}
No problem
Only one file needed
If you DO want to separate files, you can use includes
include features/php-basic.conf;
You can create an include for a specific location block if you'd like.
No, I think LiteSpeed does support .htaccess. It's OpenLiteSpeed that doesn't support .htaccess.It seems like I have been misinformed; LiteSpeed doesn't support .htaccess natively, but at least they have a web panel where users can enter their own rewrite rules.
LiteSpeed Web Server is compatible with commonly used Apache features, including mod_rewrite, .htaccess, and mod_security.
We use essential cookies to make this site work, and optional cookies to enhance your experience.