mirror of
https://github.com/tiyn/wiki.git
synced 2025-10-10 09:51:22 +02:00
restructuring to wiki-repo
This commit is contained in:
17
docker/gopherproxy/readme.md
Normal file
17
docker/gopherproxy/readme.md
Normal file
@@ -0,0 +1,17 @@
|
||||
# Gopherproxy
|
||||
This is a dockerized version of a gopherproxy server.
|
||||
The official container and documentation was made by [prologic](https://hub.docker.com/r/prologic/gopherproxy).
|
||||
|
||||
## Ports
|
||||
Set the following ports with the -p tag.
|
||||
|
||||
| Container Port | Recommended outside port | Protocol | Description |
|
||||
| -------------- | ------------------------ | -------- | ---------------------------------------- |
|
||||
| 8000 | 8000 | TCP | port to proxy the gopher site as http to |
|
||||
|
||||
## Additional
|
||||
There are some special variables to set.
|
||||
|
||||
| Flag | Usage |
|
||||
| ---- | ------------------------------------------------------------- |
|
||||
| -uri | define the gopher site to proxy (just 'domain.tld' is enough) |
|
9
docker/gopherproxy/rebuild.sh
Executable file
9
docker/gopherproxy/rebuild.sh
Executable file
@@ -0,0 +1,9 @@
|
||||
#!/bin/sh
|
||||
docker stop gopheroverhttp
|
||||
docker rm gopheroverhttp
|
||||
docker pull prologic/gopherproxy
|
||||
docker run --name gopheroverhttp \
|
||||
--restart unless-stopped \
|
||||
-p 8000:8000 \
|
||||
-d prologic/gopherproxy \
|
||||
-uri 'domain.tld'
|
Reference in New Issue
Block a user