Let mongoose binary change CWD to document_root

This commit is contained in:
Sergey Lyubka 2014-01-03 21:45:13 +00:00
parent dfdfcc060d
commit 675b83a3ef
2 changed files with 4 additions and 1 deletions

View File

@ -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");

View File

@ -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;