summaryrefslogtreecommitdiff
path: root/doc/bugs/assistant_listens_on_127.0.0.1_not_::1_which_breaks_IPv6_enabled_hosts.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-05-29 15:23:05 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-05-29 15:23:05 -0400
commit1f6cfecc972b121fa42ea80383183bbaccc2195a (patch)
tree0a450c4226f5e05c2a3597a9f520376de281fffe /doc/bugs/assistant_listens_on_127.0.0.1_not_::1_which_breaks_IPv6_enabled_hosts.mdwn
parenta95fb731cd117f35a6e0fce90d9eb35d0941e26e (diff)
remove old closed bugs and todo items to speed up wiki updates and reduce size
Remove closed bugs and todos that were least edited before 2014. Command line used: for f in $(grep -l '\[\[done\]\]' *.mdwn); do if [ -z $(git log --since=2014 --pretty=oneline "$f") ]; then git rm $f; git rm -rf $(echo "$f" | sed 's/.mdwn$//'); fi; done
Diffstat (limited to 'doc/bugs/assistant_listens_on_127.0.0.1_not_::1_which_breaks_IPv6_enabled_hosts.mdwn')
-rw-r--r--doc/bugs/assistant_listens_on_127.0.0.1_not_::1_which_breaks_IPv6_enabled_hosts.mdwn30
1 files changed, 0 insertions, 30 deletions
diff --git a/doc/bugs/assistant_listens_on_127.0.0.1_not_::1_which_breaks_IPv6_enabled_hosts.mdwn b/doc/bugs/assistant_listens_on_127.0.0.1_not_::1_which_breaks_IPv6_enabled_hosts.mdwn
deleted file mode 100644
index 90034f7f5..000000000
--- a/doc/bugs/assistant_listens_on_127.0.0.1_not_::1_which_breaks_IPv6_enabled_hosts.mdwn
+++ /dev/null
@@ -1,30 +0,0 @@
-What steps will reproduce the problem?
-
-Using the Linux tarball (i386) with configured IPv6:
-
-* git-annex.linux/git-annex-webapp
-
-A browser is then started, pointing to file:///tmp/webapp313.html which in turn points to http://localhost:$port/$blah .
-
-On my box localhost resolves to ::1, but the webapp is only listening on 127.0.0.1 so . While I can work around this by specifying 127.0.0.1 as the hostname, the next page that is loaded goes back to localhost.
-
-What is the expected output? What do you see instead?
-
-I would expect that the webapp would bind to ::1 if possible.
-
-What version of git-annex are you using? On what operating system?
-
-3.20130102 fromt the Linux tarball release on Debian Squeeze.
-
-Please provide any additional information below.
-
-I've tested this with:
-
-* epiphany
-* iceweasel
-* chromium
-
-Iceweasel is the only one which correctly fell back to IPv4 and worked.
-
-> Ok, I've made it use the IP address in the URL. Ugly, but avoids
-> whatever mess results in this behavior. [[done]] --[[Joey]]