1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:38:10 +00:00

WebServer: Rename {real_}root_path to {real_}document_root_path

The concept of a "document root" seems to be a de-facto industry
standard and doesn't make you wonder what kind of root path is meant.
This commit is contained in:
Thomas Keppler 2022-12-20 15:51:50 +01:00 committed by Andreas Kling
parent 4abafbbe3c
commit bb91857885
4 changed files with 15 additions and 14 deletions

View file

@ -10,8 +10,8 @@ namespace WebServer {
static Configuration* s_configuration = nullptr;
Configuration::Configuration(DeprecatedString root_path)
: m_root_path(move(root_path))
Configuration::Configuration(DeprecatedString document_root_path)
: m_document_root_path(move(document_root_path))
{
VERIFY(!s_configuration);
s_configuration = this;