Mailman ui only running on localhost 127.0.0.1
Hi Everyone,
I'm new to Python, Mailman and Virtual Environments so please excuse any silly questions...
I have an existing python app running on my webserver at: subdomain.mydomain.com I have additionally installed mailman and the ui which is available on port 8000 via lynx on the command line at: lynx 127.0.0.1:8000 I had to install this in a virtual environment as the python version was different to the original app/what was available in yum.
What I can't do is now get mailman's ui to show up on anything but the localhost. How do I direct either
subdomain.mydomain.com:8000 or subdomain2.mydomain.com
to the mailman interface? I can't quite seem to work out why its only listening on localhost:
netstat -anp | grep 80 tcp 0 0 127.0.0.1:8000 0.0.0.0:* LISTEN 3780/python tcp 0 0 127.0.0.1:8001 0.0.0.0:* LISTEN 2608/python tcp 0 0 :::80 :::* LISTEN 3849/httpd
Any advice would be greatly appreciated.
Thanks! Lauren
On 06/26/2014 04:48 PM, Lauren Baird wrote:
I have an existing python app running on my webserver at: subdomain.mydomain.com I have additionally installed mailman and the ui which is available on port 8000 via lynx on the command line at: lynx 127.0.0.1:8000 I had to install this in a virtual environment as the python version was different to the original app/what was available in yum.
What process is listening at 127.0.0.1:8000 and serving the Mailman web UI?
What I can't do is now get mailman's ui to show up on anything but the localhost. How do I direct either
subdomain.mydomain.com:8000 or subdomain2.mydomain.com
to the mailman interface?
Configure your web server that serves those domains to invoke Mailman's CGI wrappers for Mailman's URLs. See <http://www.list.org/mailman-install/node10.html>.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
participants (2)
-
Lauren Baird
-
Mark Sapiro