mirror of
				https://github.com/tiyn/wiki.git
				synced 2025-11-04 04:11:15 +01:00 
			
		
		
		
	structure ok, git added
This commit is contained in:
		
							
								
								
									
										35
									
								
								software/applications/gopher-proxy.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										35
									
								
								software/applications/gopher-proxy.md
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,35 @@
 | 
				
			|||||||
 | 
					# Gopherproxy
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Setup Proxy
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### Docker
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					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) |
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#### Rebuild
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					#!/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'
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
@@ -1,38 +1,4 @@
 | 
				
			|||||||
# Gopherproxy
 | 
					# Gopher Server
 | 
				
			||||||
 | 
					 | 
				
			||||||
## Setup Proxy
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
### Docker
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
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) |
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#### Rebuild
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
```
 | 
					 | 
				
			||||||
#!/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'
 | 
					 | 
				
			||||||
```
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Setup Server
 | 
					## Setup Server
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										17
									
								
								software/git.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								software/git.md
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,17 @@
 | 
				
			|||||||
 | 
					# Git
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Git is probably the best version control system (VCS) there is.
 | 
				
			||||||
 | 
					It's easy and can be lightweight, but also has tons of possibilities for using graphical (/web) user interfaces.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Git with web interface
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Web interfaces for git are quite useful for easily showing code to other people.
 | 
				
			||||||
 | 
					Additionally it is easy to collaborate together.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- [Gitea](applications/gitea.md) is an open-source and selfhosted
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Git without graphical interface
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					If you don't need a bloated web-interface the a more [basic idea](applications/bare-git.md)
 | 
				
			||||||
 | 
					is probably what you're looking for.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		Reference in New Issue
	
	Block a user