Skip to content

fermulator/origin-docker

 
 

Repository files navigation

LAN Cache in a docker container

Simply expose this container on port 80, and point a bunch of domains to this server's IP address, and you get a fully operational LAN cache. Hooray!

Game Download Service URL Reference List

Steam:
content[0-9].steampowered.com
*.cs.steampowered.com
*.steamcontent.com
client-download.steampowered.com
*.hsar.steampowered.com.edgesuite.net
*.akamai.steamstatic.com
content-origin.steampowered.com

Blizzard:
dist.blizzard.com.edgesuite.net
llnw.blizzard.com
dist.blizzard.com
blizzard.vo.llnwd.net
blzddist*.akamaihd.net
level3.blizzard.com

League of Legends:
l3cdn.riotgames.com

Origin:
origin-a.akamaihd.net

Wargaming.net:
dl.wargaming.net
dl2.wargaming.net
wg.gcdn.co

### WARNING ###
Some of the folowing ones may require SSL certificate spoofing to work, and come
untested. Please test the following in your environment before relying on them. 

Sony (PS4):
*.dl.playstation.net 
*.dl.playstation.net.edgesuite.net 
dl.playstation.net 
dl.playstation.net.edgesuite.net 
pls.patch.station.sony.com;

Microsoft:
*.download.windowsupdate.com 
download.windowsupdate.com 
dlassets.xboxlive.com 
*.xboxone.loris.llnwd.net 
xboxone.vo.llnwd.net 
images-eds.xboxlive.com 
xbox-mbr.xboxlive.com 
assets1.xboxlive.com.nsatc.net 
assets1.xboxlive.com

Hirez:
hirez.http.internapcdn.net

Epic Games: (not tested, needs custom SSC)
download.epicgames.com 
download1.epicgames.com 
download2.epicgames.com 
download3.epicgames.com 
download4.epicgames.com 

Quickstart

To build and run, do:

./buildcontainer.sh
./start.sh

start.sh will make a /data/ directory to store logs and cache data in.

SSL HTTPS Dependency

Warning: some services (eg, when downloading the Origin client) require HTTPS access to the hosts that we are hijacking. To avoid connectivity issues, you will need to run an SNI proxy to enable pass through of HTTPS traffic.

You can build and run the sniproxy container in the sniproxy directory to achieve this.

cd sniproxy
docker build -t sniproxy .
docker run --name sniproxy -p 443:443 sniproxy

Installation Walkthrough

Start with a clean install of Linux

Ensure /data is on a volume with plenty of disk space.

Example:

  • consider you have a mega-partition mounted to /mnt/storage
  • create a symlink for /data
$ sudo ln -s /mnt/storage/lancache/ /data

$ df -h /data
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda2       1.7T   69M  1.6T   1% /mnt/storage

Install Docker if not already installed

  • curl sudo bash is terrible, but you're trusting my code anyway :)
$ curl -sSL https://get.docker.com | sudo bash

Get this repository

$ git clone https://github.com/OpenSourceLAN/origin-docker.git
$ cd origin-docker

Set your max cache size

$ vi nginx.conf Edit nginx.conf:

  • Find the proxy_cache_path line and udpate the max_size parameter to the maximum amount of disk space you would like your cache to use

Build the containers

# ./buildcontainer.sh

Start the cache container

Notes:

Start the SNI proxy container (optional, but recommended)

# docker run --name sniproxy -p 443:443 sniproxy

Start the DNS server if you need it

# cd dnsmasq && ./start.sh

Credits

In addition to OpenSourceLAN members, this project contains contributions from @ChainedHope

About

A super simple docker container to run a LAN cache for steam, origin, etc

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%