You've already forked dockerfiles
							
							
				mirror of
				https://github.com/vimagick/dockerfiles.git
				synced 2025-10-30 23:47:48 +02:00 
			
		
		
		
	shadowbox
Outline makes it easy to create a VPN server, giving anyone access to the free and open internet.
up and running
$ mkdir -p data/{certs,state}
$ cd data/certs/
$ openssl req -x509 -nodes -days 365 -newkey rsa:2048 -subj '/CN=localhost' -keyout easypi.key -out easypi.crt
$ openssl x509 -in easypi.crt -noout -sha256 -fingerprint | cut -d= -f2 | tr -d :
$ docker-compose up -d
$ curl -s -k https://127.0.0.1:8081/easypi/server
$ curl -s -k https://127.0.0.1:8081/easypi/metrics/transfer
$ curl -s -k https://127.0.0.1:8081/easypi/access-keys
remote management
$ ssh -N -L 8081:localhost:8081 remote-server
$ open -a 'Outline Manager'
Paste your installation output:
{
  "apiUrl": "https://127.0.0.1:8081/easypi",
  "certSha256": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
}
certSha256is the fingerprint of your ssl certificate. ☝️