Show all posts by user
Introduce yourselves
Page 1 of 1 Pages: 1
Results 1 - 4 of 4
It seems it was a matter of caching, both on the server and client sides. After several tests with querying the server via telnet (and getting the expected results) and deleting browser caches I think it's working now.
w6g
by
w6g
-
How to...
Tried to capture the HTTP requests while using Opera. The main parts are -- slightly anonymized --
GET / HTTP/1.15..
Host: test.example.org
followed by
GET /mailman/listinfo HTTP/1.1
Host: test.example.org
which in turn serves the mailman listinfo page. :-/
Full output from
# tcpdump -n -S -s 0 -A 'tcp dst port 80' | grep -B3 -A10 "GET /"
~R.P.A-....GET / HTTP/1.15.
by
w6g
-
How to...
Hi.
I have set up a server section for a mailman list using
server {
listen xx.xx.xx.xx:80;
server_name lists.example.org;
location = / { rewrite ^ /mailman/listinfo permanent; }
location / { rewrite ^ /mailman$uri; }
}
[...]
}
as I found examples on the web, e.g. https://mywushublog.com/2012/05/mailman-with-nginx-on-freebsd/.
Now, using some other subdom
by
w6g
-
How to...
Well, hello.
A few weeks ago, I discovered that by then providers had appeared who offer a low-cost virtual machine with the possibility to run FreeBSD instead of Linux. And as I am getting more and more confused with Linuxes breeding like rabbits and the systemd debate (to name just a few issues), I got me one of those FreeBSD boxes, and ever since then I am trying to switch my private web and
by
w6g
-
New Member Introductions