I recently tried to configure arcanist on my machine. When I tried to connect it to my phabricator server, I got this error:
```
$ arc install-certificate
CONNECT Connecting to "http://my.phabserver.com:8080/api/"...
Usage Exception: Failed to connect to server (http://my.phabserver.com:8080/api/): [HTTP/404] Not Found
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>404 - Not Found</title>
</head>
<body>
<h1>404 - Not Found</h1>
</body>
</html>
```
However, when I go to `http://my.phabserver.com:8080/` on my web browser, everything seems fine.
Did I missed something in my phabricator installation?
**EDIT:** Added the port, since it can be valuable information.
This is my host section of my `lighttpd.conf` file:
```
$HTTP["host"] =~ "my.phabserver.com:8080" {
server.document-root = "/srv/http/phabricator/webroot"
url.rewrite-once = (
"^(/rsrc/.*)$" => "$1",
"^(/favicon.ico)$" => "$1",
# This simulates QSA (query string append) mode in Apache
"^(/[^?]*)\?(.*)" => "/index.php?__path__=$1&$2",
"^(/.*)$" => "/index.php?__path__=$1",
)
}
```