Changeset 61 in Main for trunk/Server/config.c


Ignore:
Timestamp:
Sep 18, 2024, 9:45:02 PM (2 months ago)
Author:
Nishi
Message:

add ServerRoot

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Server/config.c

    r39 r61  
    233233                                                        current->sslcert = cm_strdup(r[1]);
    234234                                                }
     235                                        } else if(cm_strcaseequ(r[0], "ServerRoot")) {
     236                                                if(r[1] == NULL) {
     237                                                        cm_log("Config", "Missing path at line %d", ln);
     238                                                        stop = 1;
     239                                                } else {
     240                                                        chdir(r[1]);
     241                                                }
    235242                                        } else if(cm_strcaseequ(r[0], "DocumentRoot")) {
    236243                                                if(r[1] == NULL) {
Note: See TracChangeset for help on using the changeset viewer.