Search K
Appearance
Appearance
DirectAdmin has support for a variety of WWW servers. To check which one is in use, and possible options:
da build opt_help | grep webserver
> webserver: apache, nginx, nginx_apache, litespeed, openlitespeed. Current value: openlitespeed. Default value: apache.Where:
Every system may have specific needs, a comparison table:
| Web Server | Advantages | Disadvantages | Suitable for shared hosting? |
|---|---|---|---|
| Apache | industry standard, highly customizable | high memory usage and slow for static files | YES |
| Nginx | great performance and response times | has no support for .htaccess, needs manual configuration for URL rewrites | NO |
| Nginx+Apache | great performance and response times, full support for .htaccess | high memory usage | YES for servers with 8+ GB of RAM |
| OpenLiteSpeed | great performance, HTTP/3 support, built-in page caching | minimal .htaccess support | YES |
| LiteSpeed | great performance, HTTP/3 support, page caching available, suitable for high-traffic sites, stunning performance | commercial | YES |
OpenLiteSpeed might be a great option for WordPress-only hosting or other CMSs that have the LSCache caching plugin.
::: code-group-item Apache
da build set webserver apache
da build php1_mode php-fpm
da build apache
da build php
da build rewrite_confsMore about apache ::: ::: code-group-item NGINX
da build set webserver nginx
da build set php1_mode php-fpm
da build nginx
da build php
da build rewrite_confsMore about NGINX ::: ::: code-group-item NGINX+Apache
da build set webserver nginx_apache
da build set php1_mode php-fpm
da build nginx_apache
da build php
da build rewrite_confsMore about NGINX+Apache ::: ::: code-group-item OpenLiteSpeed
da build set webserver openlitespeed
da build set php1_mode lsphp
da build openlitespeed
da build php
da build rewrite_confsMore about OpenLiteSpeed ::: ::: code-group-item LiteSpeed
da build set webserver litespeed
da build set php1_mode lsphp
da build litespeed
da build php
da build rewrite_confs