By default there is "0.0.0.0", and this address will work only from
the same machine, and besides there is no need in uri_root in base_url,
because it will be added automatically by browser.
evbuffer_add_printf(evb, "<html>\n <head>\n"
" <title>%s</title>\n"
- " <base href='%s%s%s'>\n"
+ " <base href='%s%s'>\n"
" </head>\n"
" <body>\n"
" <h1>%s</h1>\n"
" <ul>\n",
decoded_path, /* XXX html-escape this. */
- uri_root, path, /* XXX html-escape this? */
+ path, /* XXX html-escape this? */
trailing_slash,
decoded_path /* XXX html-escape this */);
#ifdef _WIN32