mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-27 15:01:03 +08:00
Let mongoose binary change CWD to document_root
This commit is contained in:
parent
dfdfcc060d
commit
675b83a3ef
@ -449,6 +449,10 @@ static void start_mongoose(int argc, char *argv[]) {
|
||||
free(options[i + 1]);
|
||||
}
|
||||
|
||||
// Change current working directory to document root. This way,
|
||||
// scripts can use relative paths.
|
||||
chdir(mg_get_option(server, "document_root"));
|
||||
|
||||
// Add an ability to pass listening socket to mongoose
|
||||
{
|
||||
const char *env = getenv("MONGOOSE_LISTENING_SOCKET");
|
||||
|
@ -2048,7 +2048,6 @@ static int mg_write_chunked(struct connection *conn, const char *buf, int len) {
|
||||
return n;
|
||||
}
|
||||
|
||||
|
||||
static void print_dir_entry(const struct dir_entry *de) {
|
||||
char size[64], mod[64], href[MAX_PATH_SIZE * 3], chunk[MAX_PATH_SIZE * 4];
|
||||
int64_t fsize = de->st.st_size;
|
||||
|
Loading…
x
Reference in New Issue
Block a user