1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
[](https://github.com/michael-lazar/pygopherd/actions)
[](https://www.gnu.org/licenses/gpl-2.0.en.html)
# PyGopherd
PyGopherd is a multiprotocol (gopher, gopher+, http, wap) information server.
[PyGopherd Online User Manual](https://michael-lazar.github.io/pygopherd/doc/pygopherd.html)
## History
This repo is a fork of [jgoerzen/pygopherd](https://github.com/jgoerzen/pygopherd)
that adds support for Python 3.
If you're upgrading from an old version of PyGopherd, see the [upgrade notes](UPGRADING.md).
## Quickstart
### Debian
Use the .deb:
```
dpkg -i pygopherd.deb
```
or
```
apt-get install pygopherd
```
### Non-Debian
First, download and install Python 3.7 or higher.
You can run pygopherd either in-place (as a regular user account) or
as a system-wide daemon. For running in-place, do this:
```
PYTHONPATH=. bin/pygopherd conf/local.conf
```
For installing,
```
python3 setup.py install
```
Make sure that the ``/etc/pygopherd/pygopherd.conf`` names valid users
(setuid, setgid) and valid document root (root).
|