lancachenet / monolithic

A monolithic lancache service capable of caching all CDNs in a single instance
https://hub.docker.com/r/lancachenet/monolithic
Other
746 stars 75 forks source link

monolithic wont start when share is on NFS #119

Closed mcwildcard closed 3 years ago

mcwildcard commented 3 years ago

Describe the issue you are having

when running lancache to save to local storage it runs fine however when attempting to get it to save to my NAS it throws :

monolithic_1  | # Finished including /etc/nginx/nginx.conf
monolithic_1  | Checking nginx config
monolithic_1  | nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
monolithic_1  | nginx: [emerg] chown("/data/cache/cache", 33) failed (1: Operation not permitted)
monolithic_1  | nginx: configuration file /etc/nginx/nginx.conf test failed
monolithic_1  | ERROR: hook /hooks/supervisord-pre.d/99_config_check.sh} returned a non-zero exit status '0'

I have attempted to disable root squash on the nas as well however this lead to the same result.

How are you running the container(s)

version: '2'
services:
  dns:
    image: lancachenet/lancache-dns:latest
    env_file: .env
#    restart: unless-stopped
    ports:
      - ${DNS_BIND_IP}:53:53/udp
      - ${DNS_BIND_IP}:53:53/tcp
  sniproxy:
    image: lancachenet/sniproxy:latest
    env_file: .env
#    restart: unless-stopped
    ports:
      - 443:443/tcp
  monolithic:
    image: lancachenet/monolithic:latest
    env_file: .env
#    restart: unless-stopped
    ports:
      - 80:80/tcp
    volumes:
      - ${CACHE_ROOT}/cache:/data/cache
      - ${CACHE_ROOT}/logs:/data/logs

DNS Configuration

dns is set to point to the server ip through my router

Output of container(s)

lancache_dns_1 is up-to-date
Starting lancache_monolithic_1 ... 
Starting lancache_monolithic_1 ... done
Attaching to lancache_dns_1, lancache_sniproxy_1, lancache_monolithic_1
monolithic_1  | Executing hook /hooks/entrypoint-pre.d/00_asciilogo.sh
monolithic_1  |   _                  _____           _                       _    
monolithic_1  |  | |                / ____|         | |                     | |   
monolithic_1  |  | |     __ _ _ __ | |     __ _  ___| |__   ___   _ __   ___| |_  
monolithic_1  |  | |    / _` | '_ \| |    / _` |/ __| '_ \ / _ \ | '_ \ / _ \ __| 
monolithic_1  |  | |___| (_| | | | | |___| (_| | (__| | | |  __/_| | | |  __/ |_  
monolithic_1  |  |______\__,_|_| |_|\_____\__,_|\___|_| |_|\___(_)_| |_|\___|\__| 
monolithic_1  | 
monolithic_1  | 
dns_1         | Executing hook /hooks/entrypoint-pre.d/00_asciilogo.sh
dns_1         |   _                  _____           _                       _    
dns_1         |  | |                / ____|         | |                     | |   
dns_1         |  | |     __ _ _ __ | |     __ _  ___| |__   ___   _ __   ___| |_  
dns_1         |  | |    / _` | '_ \| |    / _` |/ __| '_ \ / _ \ | '_ \ / _ \ __| 
dns_1         |  | |___| (_| | | | | |___| (_| | (__| | | |  __/_| | | |  __/ |_  
dns_1         |  |______\__,_|_| |_|\_____\__,_|\___|_| |_|\___(_)_| |_|\___|\__| 
dns_1         | 
dns_1         | 
dns_1         | Executing hook /hooks/entrypoint-pre.d/10_generate_config.sh
dns_1         | configuring /etc/resolv.conf to stop from looping to ourself
dns_1         | 
dns_1         | Bootstrapping Lancache-DNS from https://github.com/uklans/cache-domains.git
dns_1         | From https://github.com/uklans/cache-domains
dns_1         |    354615d..8793ce1  master     -> origin/master
dns_1         | HEAD is now at 8793ce1 Path Of Exile CDN added (#138)
dns_1         | 
dns_1         | ----------------------------------------------------------------------
dns_1         | Using Generic Server: 192.168.1.35
dns_1         | Make sure you are using a monolithic cache or load balancer at 192.168.1.35
dns_1         | ----------------------------------------------------------------------
dns_1         | 
dns_1         | Processing service: arenanet
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: blizzard
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: bsg
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: cityofheroes
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: daybreak
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: epicgames
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: frontier
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: hirez
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: nexusmods
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: neverwinter
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: nintendo
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: origin
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: pathofexile
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: renegadex
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: riot
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: rockstar
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: sony
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: square
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: steam
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: uplay
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: teso
sniproxy_1    | 2020-10-22 13:52:18 192.168.1.108:54662 -> 172.18.0.2:443 -> 51.104.164.114:443 [array605.prod.do.dsp.mp.microsoft.com] 3101/3101 bytes tx 1531/1531 bytes rx 67.616 seconds
sniproxy_1    | 2020-10-22 14:00:25 recv(server): Connection reset by peer, closing connection
sniproxy_1    | 2020-10-22 14:00:25 192.168.1.108:54900 -> 172.18.0.2:443 -> 20.54.24.69:443 [array610.prod.do.dsp.mp.microsoft.com] 3101/3101 bytes tx 1540/1540 bytes rx 121.179 seconds
sniproxy_1    | 2020-10-22 14:01:54 192.168.1.116:51972 -> 172.18.0.2:443 -> 95.100.86.63:443 [steamcdn-a.akamaihd.net] 2266/2266 bytes tx 3340/3340 bytes rx 30.583 seconds
sniproxy_1    | 2020-10-22 14:01:54 192.168.1.116:51973 -> 172.18.0.2:443 -> 95.100.86.64:443 [steamcdn-a.akamaihd.net] 2559/2559 bytes tx 3664/3664 bytes rx 30.633 seconds
sniproxy_1    | 2020-10-22 14:01:54 192.168.1.116:51971 -> 172.18.0.2:443 -> 95.100.86.63:443 [steamcdn-a.akamaihd.net] 2560/2560 bytes tx 3671/3671 bytes rx 30.633 seconds
sniproxy_1    | 2020-10-22 14:03:51 recv(server): Connection reset by peer, closing connection
sniproxy_1    | 2020-10-22 14:03:51 192.168.1.108:55057 -> 172.18.0.2:443 -> 20.191.46.211:443 [array602.prod.do.dsp.mp.microsoft.com] 3101/3101 bytes tx 1537/1537 bytes rx 126.458 seconds
sniproxy_1    | 2020-10-22 14:04:03 192.168.1.108:55146 -> 172.18.0.2:443 -> 95.100.86.63:443 [steamcdn-a.akamaihd.net] 1018/1018 bytes tx 2078/2078 bytes rx 30.398 seconds
sniproxy_1    | 2020-10-22 14:04:03 192.168.1.108:55147 -> 172.18.0.2:443 -> 95.100.86.63:443 [steamcdn-a.akamaihd.net] 1308/1308 bytes tx 2400/2400 bytes rx 30.398 seconds
sniproxy_1    | 2020-10-22 14:04:03 192.168.1.108:55148 -> 172.18.0.2:443 -> 95.100.86.63:443 [steamcdn-a.akamaihd.net] 1016/1016 bytes tx 2075/2075 bytes rx 30.398 seconds
sniproxy_1    | 2020-10-22 14:08:15 recv(server): Connection reset by peer, closing connection
sniproxy_1    | 2020-10-22 14:08:15 192.168.1.108:55285 -> 172.18.0.2:443 -> 51.104.164.114:443 [array605.prod.do.dsp.mp.microsoft.com] 3102/3102 bytes tx 1531/1531 bytes rx 125.162 seconds
sniproxy_1    | 2020-10-22 14:10:20 192.168.1.108:55476 -> 172.18.0.2:443 -> 13.74.179.117:443 [slscr.update.microsoft.com] 2848/2848 bytes tx 998/998 bytes rx 0.200 seconds
sniproxy_1    | 2020-10-22 14:10:22 192.168.1.108:55483 -> 172.18.0.2:443 -> 52.184.214.53:443 [geo.prod.do.dsp.mp.microsoft.com] 3150/3150 bytes tx 897/897 bytes rx 0.499 seconds
sniproxy_1    | 2020-10-22 14:10:24 192.168.1.108:55501 -> 172.18.0.2:443 -> 52.184.214.53:443 [geo.prod.do.dsp.mp.microsoft.com] 3152/3152 bytes tx 897/897 bytes rx 0.471 seconds
sniproxy_1    | 2020-10-22 14:12:13 192.168.1.108:55499 -> 172.18.0.2:443 -> 52.137.103.96:443 [array803.prod.do.dsp.mp.microsoft.com] 3098/3098 bytes tx 1523/1523 bytes rx 109.974 seconds
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: twitch
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: warframe
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: wargaming
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: wsus
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: xboxlive
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | 
dns_1         |  --- 
dns_1         | 
dns_1         | finished bootstrapping.
dns_1         | Executing hook /hooks/supervisord-pre.d/10_config_check.sh
dns_1         | checking Bind9 config
dns_1         | Executing hook /hooks/entrypoint-pre.d/00_asciilogo.sh
sniproxy_1    | 2020-10-22 14:13:11 192.168.1.108:55494 -> 172.18.0.2:443 -> 104.84.84.234:443 [disc801.prod.do.dsp.mp.microsoft.com] 6540/6540 bytes tx 1100/1100 bytes rx 169.163 seconds
sniproxy_1    | 2020-10-22 14:13:11 192.168.1.108:55496 -> 172.18.0.2:443 -> 104.84.84.234:443 [disc801.prod.do.dsp.mp.microsoft.com] 6479/6479 bytes tx 1098/1098 bytes rx 168.871 seconds
sniproxy_1    | 2020-10-22 14:13:11 192.168.1.108:55490 -> 172.18.0.2:443 -> 104.84.84.234:443 [disc801.prod.do.dsp.mp.microsoft.com] 6480/6480 bytes tx 1100/1100 bytes rx 169.168 seconds
sniproxy_1    | 2020-10-22 14:13:11 192.168.1.108:55492 -> 172.18.0.2:443 -> 104.84.84.234:443 [disc801.prod.do.dsp.mp.microsoft.com] 6480/6480 bytes tx 1100/1100 bytes rx 169.168 seconds
sniproxy_1    | 2020-10-22 14:13:11 192.168.1.108:55491 -> 172.18.0.2:443 -> 104.84.84.234:443 [disc801.prod.do.dsp.mp.microsoft.com] 6479/6479 bytes tx 1100/1100 bytes rx 169.168 seconds
sniproxy_1    | 2020-10-22 14:31:54 192.168.1.116:52143 -> 172.18.0.3:443 -> 95.100.86.64:443 [steamcdn-a.akamaihd.net] 1014/1014 bytes tx 2067/2067 bytes rx 30.380 seconds
sniproxy_1    | 2020-10-22 14:31:54 192.168.1.116:52142 -> 172.18.0.3:443 -> 95.100.86.64:443 [steamcdn-a.akamaihd.net] 1017/1017 bytes tx 2075/2075 bytes rx 30.432 seconds
sniproxy_1    | 2020-10-22 14:31:54 192.168.1.116:52141 -> 172.18.0.3:443 -> 95.100.86.64:443 [steamcdn-a.akamaihd.net] 1309/1309 bytes tx 2411/2411 bytes rx 30.432 seconds
sniproxy_1    | 2020-10-22 14:34:02 192.168.1.108:56467 -> 172.18.0.3:443 -> 95.100.86.63:443 [steamcdn-a.akamaihd.net] 1017/1017 bytes tx 2083/2083 bytes rx 30.417 seconds
sniproxy_1    | 2020-10-22 14:34:02 192.168.1.108:56466 -> 172.18.0.3:443 -> 95.100.86.63:443 [steamcdn-a.akamaihd.net] 1307/1307 bytes tx 2403/2403 bytes rx 30.417 seconds
sniproxy_1    | 2020-10-22 14:34:02 192.168.1.108:56468 -> 172.18.0.3:443 -> 95.100.86.63:443 [steamcdn-a.akamaihd.net] 1016/1016 bytes tx 2067/2067 bytes rx 30.417 seconds
sniproxy_1    | 2020-10-22 14:42:35 192.168.1.116:52208 -> 172.18.0.3:443 -> 95.100.86.64:443 [steamcdn-a.akamaihd.net] 723/723 bytes tx 1744/1744 bytes rx 30.257 seconds
sniproxy_1    | 2020-10-22 14:42:35 192.168.1.116:52207 -> 172.18.0.3:443 -> 95.100.86.64:443 [steamcdn-a.akamaihd.net] 430/430 bytes tx 1410/1410 bytes rx 30.259 seconds
sniproxy_1    | 2020-10-22 14:42:35 192.168.1.116:52209 -> 172.18.0.3:443 -> 95.100.86.64:443 [steamcdn-a.akamaihd.net] 1017/1017 bytes tx 2075/2075 bytes rx 30.356 seconds
sniproxy_1    | 2020-10-22 14:42:36 192.168.1.108:56653 -> 172.18.0.3:443 -> 40.91.80.89:443 [array801.prod.do.dsp.mp.microsoft.com] 3100/3100 bytes tx 1537/1537 bytes rx 100.253 seconds
sniproxy_1    | 2020-10-22 14:44:19 recv(server): Connection reset by peer, closing connection
sniproxy_1    | 2020-10-22 14:44:19 192.168.1.108:56698 -> 172.18.0.3:443 -> 52.143.84.45:443 [array807.prod.do.dsp.mp.microsoft.com] 3099/3099 bytes tx 1542/1542 bytes rx 125.608 seconds
sniproxy_1    | 2020-10-22 14:45:14 192.168.1.108:56916 -> 172.18.0.3:443 -> 37.244.28.104:443 [nydus.battle.net] 4178/4178 bytes tx 732/732 bytes rx 0.929 seconds
sniproxy_1    | 2020-10-22 14:45:15 192.168.1.108:56917 -> 172.18.0.3:443 -> 37.244.28.104:443 [nydus.battle.net] 4326/4326 bytes tx 739/739 bytes rx 1.739 seconds
sniproxy_1    | 2020-10-22 14:45:20 192.168.1.108:56982 -> 172.18.0.3:443 -> 37.244.28.104:443 [nydus.battle.net] 4287/4287 bytes tx 1803/1803 bytes rx 2.785 seconds
sniproxy_1    | 2020-10-22 14:45:20 192.168.1.108:56915 -> 172.18.0.3:443 -> 37.244.28.104:443 [nydus.battle.net] 5235/5235 bytes tx 1056/1056 bytes rx 6.790 seconds
sniproxy_1    | 2020-10-22 14:46:54 192.168.1.116:52238 -> 172.18.0.3:443 -> 95.100.86.63:443 [steamcdn-a.akamaihd.net] 429/429 bytes tx 1408/1408 bytes rx 30.264 seconds
sniproxy_1    | 2020-10-22 14:46:54 192.168.1.116:52237 -> 172.18.0.3:443 -> 95.100.86.63:443 [steamcdn-a.akamaihd.net] 431/431 bytes tx 1416/1416 bytes rx 30.264 seconds
sniproxy_1    | 2020-10-22 14:46:54 192.168.1.116:52236 -> 172.18.0.3:443 -> 95.100.86.63:443 [steamcdn-a.akamaihd.net] 1017/1017 bytes tx 2080/2080 bytes rx 30.313 seconds
sniproxy_1    | 2020-10-22 14:49:01 192.168.1.108:57293 -> 172.18.0.3:443 -> 95.100.86.63:443 [steamcdn-a.akamaihd.net] 1310/1310 bytes tx 2408/2408 bytes rx 32.013 seconds
sniproxy_1    | 2020-10-22 14:49:01 192.168.1.108:57292 -> 172.18.0.3:443 -> 95.100.86.63:443 [steamcdn-a.akamaihd.net] 1014/1014 bytes tx 2078/2078 bytes rx 32.063 seconds
sniproxy_1    | 2020-10-22 14:49:01 192.168.1.108:57294 -> 172.18.0.3:443 -> 95.100.86.63:443 [steamcdn-a.akamaihd.net] 1019/1019 bytes tx 2067/2067 bytes rx 32.062 seconds
sniproxy_1    | 2020-10-22 14:52:28 192.168.1.108:57644 -> 172.18.0.3:443 -> 52.229.171.202:443 [slscr.update.microsoft.com] 2849/2849 bytes tx 999/999 bytes rx 0.931 seconds
sniproxy_1    | 2020-10-22 15:19:02 192.168.1.108:60065 -> 172.18.0.2:443 -> 95.100.86.63:443 [steamcdn-a.akamaihd.net] 1173/1173 bytes tx 1963/1963 bytes rx 30.427 seconds
sniproxy_1    | 2020-10-22 15:19:02 192.168.1.108:60066 -> 172.18.0.2:443 -> 95.100.86.64:443 [steamcdn-a.akamaihd.net] 1758/1758 bytes tx 2635/2635 bytes rx 30.476 seconds
dns_1         |   _                  _____           _                       _    
dns_1         |  | |                / ____|         | |                     | |   
dns_1         |  | |     __ _ _ __ | |     __ _  ___| |__   ___   _ __   ___| |_  
dns_1         |  | |    / _` | '_ \| |    / _` |/ __| '_ \ / _ \ | '_ \ / _ \ __| 
dns_1         |  | |___| (_| | | | | |___| (_| | (__| | | |  __/_| | | |  __/ |_  
dns_1         |  |______\__,_|_| |_|\_____\__,_|\___|_| |_|\___(_)_| |_|\___|\__| 
dns_1         | 
dns_1         | 
dns_1         | Executing hook /hooks/entrypoint-pre.d/10_generate_config.sh
dns_1         | configuring /etc/resolv.conf to stop from looping to ourself
dns_1         | 
dns_1         | Bootstrapping Lancache-DNS from https://github.com/uklans/cache-domains.git
dns_1         | HEAD is now at 8793ce1 Path Of Exile CDN added (#138)
dns_1         | 
dns_1         | ----------------------------------------------------------------------
dns_1         | Using Generic Server: 192.168.1.35
dns_1         | Make sure you are using a monolithic cache or load balancer at 192.168.1.35
dns_1         | ----------------------------------------------------------------------
dns_1         | 
dns_1         | Processing service: arenanet
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: blizzard
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: bsg
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: cityofheroes
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: daybreak
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: epicgames
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: frontier
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: hirez
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: nexusmods
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: neverwinter
sniproxy_1    | 2020-10-22 15:19:02 192.168.1.108:60067 -> 172.18.0.2:443 -> 95.100.86.63:443 [steamcdn-a.akamaihd.net] 1171/1171 bytes tx 1960/1960 bytes rx 30.476 seconds
sniproxy_1    | 2020-10-22 15:21:53 192.168.1.108:60226 -> 172.18.0.2:443 -> 52.137.103.96:443 [array803.prod.do.dsp.mp.microsoft.com] 3101/3101 bytes tx 1529/1529 bytes rx 82.324 seconds
sniproxy_1    | 2020-10-22 15:45:42 192.168.1.108:61739 -> 172.18.0.3:443 -> 52.137.103.96:443 [array803.prod.do.dsp.mp.microsoft.com] 3101/3101 bytes tx 1529/1529 bytes rx 105.737 seconds
sniproxy_1    | 2020-10-22 15:46:56 192.168.1.116:52965 -> 172.18.0.3:443 -> 95.100.86.64:443 [steamcdn-a.akamaihd.net] 2263/2263 bytes tx 3326/3326 bytes rx 30.672 seconds
sniproxy_1    | 2020-10-22 15:46:56 192.168.1.116:52964 -> 172.18.0.3:443 -> 95.100.86.64:443 [steamcdn-a.akamaihd.net] 2190/2190 bytes tx 3403/3403 bytes rx 30.672 seconds
sniproxy_1    | 2020-10-22 15:46:57 192.168.1.116:52963 -> 172.18.0.3:443 -> 95.100.86.64:443 [steamcdn-a.akamaihd.net] 2561/2561 bytes tx 3675/3675 bytes rx 30.721 seconds
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: nintendo
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: origin
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: pathofexile
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: renegadex
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: riot
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: rockstar
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: sony
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: square
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: steam
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: uplay
dns_1         | Enabling service with ip(s): 192.168.1.35
monolithic_1  | Executing hook /hooks/entrypoint-pre.d/00_deprecation.sh
dns_1         | Processing service: teso
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: twitch
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: warframe
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: wargaming
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: wsus
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: xboxlive
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | 
dns_1         |  --- 
dns_1         | 
dns_1         | finished bootstrapping.
dns_1         | Executing hook /hooks/supervisord-pre.d/10_config_check.sh
dns_1         | checking Bind9 config
dns_1         | Executing hook /hooks/entrypoint-pre.d/00_asciilogo.sh
dns_1         |   _                  _____           _                       _    
dns_1         |  | |                / ____|         | |                     | |   
dns_1         |  | |     __ _ _ __ | |     __ _  ___| |__   ___   _ __   ___| |_  
dns_1         |  | |    / _` | '_ \| |    / _` |/ __| '_ \ / _ \ | '_ \ / _ \ __| 
dns_1         |  | |___| (_| | | | | |___| (_| | (__| | | |  __/_| | | |  __/ |_  
dns_1         |  |______\__,_|_| |_|\_____\__,_|\___|_| |_|\___(_)_| |_|\___|\__| 
dns_1         | 
dns_1         | 
dns_1         | Executing hook /hooks/entrypoint-pre.d/10_generate_config.sh
dns_1         | configuring /etc/resolv.conf to stop from looping to ourself
dns_1         | 
dns_1         | Bootstrapping Lancache-DNS from https://github.com/uklans/cache-domains.git
dns_1         | HEAD is now at 8793ce1 Path Of Exile CDN added (#138)
dns_1         | 
dns_1         | ----------------------------------------------------------------------
dns_1         | Using Generic Server: 192.168.1.35
dns_1         | Make sure you are using a monolithic cache or load balancer at 192.168.1.35
dns_1         | ----------------------------------------------------------------------
dns_1         | 
dns_1         | Processing service: arenanet
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: blizzard
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: bsg
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: cityofheroes
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: daybreak
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: epicgames
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: frontier
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: hirez
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: nexusmods
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: neverwinter
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: nintendo
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: origin
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: pathofexile
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: renegadex
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: riot
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: rockstar
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: sony
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: square
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: steam
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: uplay
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: teso
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: twitch
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: warframe
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: wargaming
dns_1         | Enabling service with ip(s): 192.168.1.35
monolithic_1  | Executing hook /hooks/entrypoint-pre.d/05_config_check.sh
dns_1         | Processing service: wsus
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: xboxlive
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | 
dns_1         |  --- 
dns_1         | 
dns_1         | finished bootstrapping.
dns_1         | Executing hook /hooks/supervisord-pre.d/10_config_check.sh
dns_1         | checking Bind9 config
dns_1         | Executing hook /hooks/entrypoint-pre.d/00_asciilogo.sh
dns_1         |   _                  _____           _                       _    
dns_1         |  | |                / ____|         | |                     | |   
monolithic_1  | Checking cache configuration
dns_1         |  | |     __ _ _ __ | |     __ _  ___| |__   ___   _ __   ___| |_  
dns_1         |  | |    / _` | '_ \| |    / _` |/ __| '_ \ / _ \ | '_ \ / _ \ __| 
dns_1         |  | |___| (_| | | | | |___| (_| | (__| | | |  __/_| | | |  __/ |_  
dns_1         |  |______\__,_|_| |_|\_____\__,_|\___|_| |_|\___(_)_| |_|\___|\__| 
dns_1         | 
dns_1         | 
dns_1         | Executing hook /hooks/entrypoint-pre.d/10_generate_config.sh
dns_1         | configuring /etc/resolv.conf to stop from looping to ourself
dns_1         | 
dns_1         | Bootstrapping Lancache-DNS from https://github.com/uklans/cache-domains.git
dns_1         | HEAD is now at 8793ce1 Path Of Exile CDN added (#138)
dns_1         | 
dns_1         | ----------------------------------------------------------------------
dns_1         | Using Generic Server: 192.168.1.35
dns_1         | Make sure you are using a monolithic cache or load balancer at 192.168.1.35
dns_1         | ----------------------------------------------------------------------
dns_1         | 
dns_1         | Processing service: arenanet
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: blizzard
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: bsg
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: cityofheroes
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: daybreak
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: epicgames
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: frontier
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: hirez
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: nexusmods
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: neverwinter
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: nintendo
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: origin
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: pathofexile
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: renegadex
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: riot
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: rockstar
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: sony
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: square
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: steam
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: uplay
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: teso
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: twitch
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: warframe
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: wargaming
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: wsus
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: xboxlive
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | 
dns_1         |  --- 
dns_1         | 
dns_1         | finished bootstrapping.
dns_1         | Executing hook /hooks/supervisord-pre.d/10_config_check.sh
dns_1         | checking Bind9 config
dns_1         | 2020-10-22 16:31:52,856 WARN received SIGTERM indicating exit request
dns_1         | Executing hook /hooks/entrypoint-pre.d/00_asciilogo.sh
dns_1         |   _                  _____           _                       _    
dns_1         |  | |                / ____|         | |                     | |   
dns_1         |  | |     __ _ _ __ | |     __ _  ___| |__   ___   _ __   ___| |_  
dns_1         |  | |    / _` | '_ \| |    / _` |/ __| '_ \ / _ \ | '_ \ / _ \ __| 
dns_1         |  | |___| (_| | | | | |___| (_| | (__| | | |  __/_| | | |  __/ |_  
dns_1         |  |______\__,_|_| |_|\_____\__,_|\___|_| |_|\___(_)_| |_|\___|\__| 
dns_1         | 
dns_1         | 
dns_1         | Executing hook /hooks/entrypoint-pre.d/10_generate_config.sh
dns_1         | configuring /etc/resolv.conf to stop from looping to ourself
dns_1         | 
dns_1         | Bootstrapping Lancache-DNS from https://github.com/uklans/cache-domains.git
dns_1         | HEAD is now at 8793ce1 Path Of Exile CDN added (#138)
dns_1         | 
dns_1         | ----------------------------------------------------------------------
dns_1         | Using Generic Server: 192.168.1.35
dns_1         | Make sure you are using a monolithic cache or load balancer at 192.168.1.35
dns_1         | ----------------------------------------------------------------------
dns_1         | 
dns_1         | Processing service: arenanet
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: blizzard
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: bsg
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: cityofheroes
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: daybreak
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: epicgames
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: frontier
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: hirez
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: nexusmods
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: neverwinter
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: nintendo
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: origin
dns_1         | Enabling service with ip(s): 192.168.1.35
monolithic_1  |  Detected existing cache data, checking config hash for consistency
dns_1         | Processing service: pathofexile
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: renegadex
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: riot
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: rockstar
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: sony
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: square
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: steam
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: uplay
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: teso
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: twitch
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: warframe
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: wargaming
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: wsus
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: xboxlive
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | 
dns_1         |  --- 
dns_1         | 
dns_1         | finished bootstrapping.
dns_1         | Executing hook /hooks/supervisord-pre.d/10_config_check.sh
dns_1         | checking Bind9 config
dns_1         | Executing hook /hooks/entrypoint-pre.d/00_asciilogo.sh
dns_1         |   _                  _____           _                       _    
dns_1         |  | |                / ____|         | |                     | |   
dns_1         |  | |     __ _ _ __ | |     __ _  ___| |__   ___   _ __   ___| |_  
dns_1         |  | |    / _` | '_ \| |    / _` |/ __| '_ \ / _ \ | '_ \ / _ \ __| 
dns_1         |  | |___| (_| | | | | |___| (_| | (__| | | |  __/_| | | |  __/ |_  
dns_1         |  |______\__,_|_| |_|\_____\__,_|\___|_| |_|\___(_)_| |_|\___|\__| 
dns_1         | 
dns_1         | 
dns_1         | Executing hook /hooks/entrypoint-pre.d/10_generate_config.sh
dns_1         | configuring /etc/resolv.conf to stop from looping to ourself
dns_1         | 
dns_1         | Bootstrapping Lancache-DNS from https://github.com/uklans/cache-domains.git
dns_1         | HEAD is now at 8793ce1 Path Of Exile CDN added (#138)
dns_1         | 
dns_1         | ----------------------------------------------------------------------
dns_1         | Using Generic Server: 192.168.1.35
dns_1         | Make sure you are using a monolithic cache or load balancer at 192.168.1.35
dns_1         | ----------------------------------------------------------------------
dns_1         | 
dns_1         | Processing service: arenanet
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: blizzard
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: bsg
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: cityofheroes
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: daybreak
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: epicgames
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: frontier
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: hirez
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: nexusmods
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: neverwinter
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: nintendo
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: origin
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: pathofexile
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: renegadex
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: riot
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: rockstar
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: sony
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: square
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: steam
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: uplay
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: teso
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: twitch
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: warframe
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: wargaming
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: wsus
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | Processing service: xboxlive
dns_1         | Enabling service with ip(s): 192.168.1.35
dns_1         | 
dns_1         |  --- 
dns_1         | 
dns_1         | finished bootstrapping.
dns_1         | Executing hook /hooks/supervisord-pre.d/10_config_check.sh
dns_1         | checking Bind9 config
monolithic_1  |  CONFIGHASH matches current configuration
monolithic_1  | Executing hook /hooks/entrypoint-pre.d/10_setup.sh
monolithic_1  | Executing hook /hooks/entrypoint-pre.d/15_generate_maps.sh
monolithic_1  | Bootstrapping Monolithic from https://github.com/uklans/cache-domains.git
monolithic_1  | HEAD is now at 8793ce1 Path Of Exile CDN added (#138)
monolithic_1  | Reading cache arenanet from arenanet.txt
monolithic_1  | host: assetcdn.101.arenanetworks.com
monolithic_1  | new host: assetcdn.101.arenanetworks.com
monolithic_1  | host: assetcdn.102.arenanetworks.com
monolithic_1  | new host: assetcdn.102.arenanetworks.com
monolithic_1  | host: assetcdn.103.arenanetworks.com
monolithic_1  | new host: assetcdn.103.arenanetworks.com
monolithic_1  | host: live.patcher.bladeandsoul.com
monolithic_1  | new host: live.patcher.bladeandsoul.com
monolithic_1  | Reading cache blizzard from blizzard.txt
monolithic_1  | host: dist.blizzard.com
monolithic_1  | new host: dist.blizzard.com
monolithic_1  | host: dist.blizzard.com.edgesuite.net
monolithic_1  | new host: dist.blizzard.com.edgesuite.net
monolithic_1  | host: llnw.blizzard.com
monolithic_1  | new host: llnw.blizzard.com
monolithic_1  | host: edgecast.blizzard.com
monolithic_1  | new host: edgecast.blizzard.com
monolithic_1  | host: blizzard.vo.llnwd.net
monolithic_1  | new host: blizzard.vo.llnwd.net
monolithic_1  | host: blzddist1-a.akamaihd.net
monolithic_1  | new host: blzddist1-a.akamaihd.net
monolithic_1  | host: blzddist2-a.akamaihd.net
monolithic_1  | new host: blzddist2-a.akamaihd.net
monolithic_1  | host: blzddist3-a.akamaihd.net
monolithic_1  | new host: blzddist3-a.akamaihd.net
monolithic_1  | host: blzddist4-a.akamaihd.net
monolithic_1  | new host: blzddist4-a.akamaihd.net
monolithic_1  | host: level3.blizzard.com
monolithic_1  | new host: level3.blizzard.com
monolithic_1  | host: nydus.battle.net
monolithic_1  | new host: nydus.battle.net
monolithic_1  | host: edge.blizzard.top.comcast.net
monolithic_1  | new host: edge.blizzard.top.comcast.net
monolithic_1  | host: cdn.blizzard.com
monolithic_1  | new host: cdn.blizzard.com
monolithic_1  | host: *.cdn.blizzard.com
monolithic_1  | new host: *.cdn.blizzard.com
monolithic_1  | Reading cache bsg from bsg.txt
monolithic_1  | host: cdn-11.eft-store.com
monolithic_1  | new host: cdn-11.eft-store.com
monolithic_1  | host: cl-453343cd.gcdn.co
monolithic_1  | new host: cl-453343cd.gcdn.co
monolithic_1  | Reading cache cityofheroes from cityofheroes.txt
monolithic_1  | host: cdn.homecomingservers.com
monolithic_1  | new host: cdn.homecomingservers.com
monolithic_1  | host: nsa.tools
monolithic_1  | new host: nsa.tools
monolithic_1  | Reading cache daybreak from daybreak.txt
monolithic_1  | host: # Daybreak games
monolithic_1  | new host: #Daybreakgames
monolithic_1  | host: #
monolithic_1  | new host: #
monolithic_1  | host: # Do NOT cache manifest.patch.daybreakgames.com
monolithic_1  | new host: #DoNOTcachemanifest.patch.daybreakgames.com
monolithic_1  | host: #
monolithic_1  | new host: #
monolithic_1  | host: #PS2
monolithic_1  | new host: #PS2
monolithic_1  | host: pls.patch.daybreakgames.com
monolithic_1  | new host: pls.patch.daybreakgames.com
monolithic_1  | Reading cache epicgames from epicgames.txt
monolithic_1  | host: cdn1.epicgames.com
monolithic_1  | new host: cdn1.epicgames.com
monolithic_1  | host: cdn.unrealengine.com
monolithic_1  | new host: cdn.unrealengine.com
monolithic_1  | host: cdn1.unrealengine.com
monolithic_1  | new host: cdn1.unrealengine.com
monolithic_1  | host: cdn2.unrealengine.com
monolithic_1  | new host: cdn2.unrealengine.com
monolithic_1  | host: cdn3.unrealengine.com
monolithic_1  | new host: cdn3.unrealengine.com
monolithic_1  | host: download.epicgames.com
monolithic_1  | new host: download.epicgames.com
monolithic_1  | host: download2.epicgames.com
monolithic_1  | new host: download2.epicgames.com
monolithic_1  | host: download3.epicgames.com
monolithic_1  | new host: download3.epicgames.com
monolithic_1  | host: download4.epicgames.com
monolithic_1  | new host: download4.epicgames.com
monolithic_1  | host: epicgames-download1.akamaized.net
monolithic_1  | new host: epicgames-download1.akamaized.net
monolithic_1  | Reading cache frontier from frontier.txt
monolithic_1  | host: cdn.zaonce.net
monolithic_1  | new host: cdn.zaonce.net
monolithic_1  | Reading cache hirez from hirez.txt
monolithic_1  | host: hirez.http.internapcdn.net
monolithic_1  | new host: hirez.http.internapcdn.net
monolithic_1  | Reading cache nexusmods from nexusmods.txt
monolithic_1  | host: filedelivery.nexusmods.com
monolithic_1  | new host: filedelivery.nexusmods.com
monolithic_1  | Reading cache neverwinter from neverwinter.txt
monolithic_1  | host: level3.nwhttppatch.crypticstudios.com
monolithic_1  | new host: level3.nwhttppatch.crypticstudios.com
monolithic_1  | Reading cache nintendo from nintendo.txt
monolithic_1  | host: ccs.cdn.wup.shop.nintendo.com
monolithic_1  | new host: ccs.cdn.wup.shop.nintendo.com
monolithic_1  | host: ccs.cdn.wup.shop.nintendo.net
monolithic_1  | new host: ccs.cdn.wup.shop.nintendo.net
monolithic_1  | host: ccs.cdn.wup.shop.nintendo.net.edgesuite.net
monolithic_1  | new host: ccs.cdn.wup.shop.nintendo.net.edgesuite.net
monolithic_1  | host: geisha-wup.cdn.nintendo.net
monolithic_1  | new host: geisha-wup.cdn.nintendo.net
monolithic_1  | host: geisha-wup.cdn.nintendo.net.edgekey.net
monolithic_1  | new host: geisha-wup.cdn.nintendo.net.edgekey.net
monolithic_1  | host: idbe-wup.cdn.nintendo.net
monolithic_1  | new host: idbe-wup.cdn.nintendo.net
monolithic_1  | host: idbe-wup.cdn.nintendo.net.edgekey.net
monolithic_1  | new host: idbe-wup.cdn.nintendo.net.edgekey.net
monolithic_1  | host: ecs-lp1.hac.shop.nintendo.net
monolithic_1  | new host: ecs-lp1.hac.shop.nintendo.net
monolithic_1  | host: receive-lp1.dg.srv.nintendo.net
monolithic_1  | new host: receive-lp1.dg.srv.nintendo.net
monolithic_1  | host: *.wup.shop.nintendo.net
monolithic_1  | new host: *.wup.shop.nintendo.net
monolithic_1  | host: *.wup.eshop.nintendo.net
monolithic_1  | new host: *.wup.eshop.nintendo.net
monolithic_1  | host: *.hac.lp1.d4c.nintendo.net
monolithic_1  | new host: *.hac.lp1.d4c.nintendo.net
monolithic_1  | host: *.hac.lp1.eshop.nintendo.net
monolithic_1  | new host: *.hac.lp1.eshop.nintendo.net
monolithic_1  | Reading cache origin from origin.txt
monolithic_1  | host: # WARNING:  Origin has been seen downloading https client downloads on origin-a.akamaihd.net.  A solution should be in place to forward https to the origin server (eg sniproxy)
monolithic_1  | new host: #WARNING:Originhasbeenseendownloadinghttpsclientdownloadsonorigin-a.akamaihd.net.Asolutionshouldbeinplacetoforwardhttpstotheoriginserver(egsniproxy)
monolithic_1  | host: origin-a.akamaihd.net
monolithic_1  | new host: origin-a.akamaihd.net
monolithic_1  | host: lvlt.cdn.ea.com
monolithic_1  | new host: lvlt.cdn.ea.com
monolithic_1  | Reading cache pathofexile from pathofexile.txt
monolithic_1  | host: patchcdn.pathofexile.com
monolithic_1  | new host: patchcdn.pathofexile.com
monolithic_1  | Reading cache renegadex from renegadex.txt
monolithic_1  | host: rxp-lv.cncirc.net
monolithic_1  | new host: rxp-lv.cncirc.net
monolithic_1  | host: cronub.fairplayinc.uk
monolithic_1  | new host: cronub.fairplayinc.uk
monolithic_1  | host: amirror.tyrant.gg
monolithic_1  | new host: amirror.tyrant.gg
monolithic_1  | host: mirror.usa.tyrant.gg
monolithic_1  | new host: mirror.usa.tyrant.gg
monolithic_1  | host: renx.b-cdn.net
monolithic_1  | new host: renx.b-cdn.net
monolithic_1  | Reading cache riot from riot.txt
monolithic_1  | host: l3cdn.riotgames.com
monolithic_1  | new host: l3cdn.riotgames.com
monolithic_1  | host: worldwide.l3cdn.riotgames.com
monolithic_1  | new host: worldwide.l3cdn.riotgames.com
monolithic_1  | host: riotgamespatcher-a.akamaihd.net
monolithic_1  | new host: riotgamespatcher-a.akamaihd.net
monolithic_1  | host: riotgamespatcher-a.akamaihd.net.edgesuite.net
monolithic_1  | new host: riotgamespatcher-a.akamaihd.net.edgesuite.net
monolithic_1  | host: *.dyn.riotcdn.net
monolithic_1  | new host: *.dyn.riotcdn.net
monolithic_1  | Reading cache rockstar from rockstar.txt
monolithic_1  | host: patches.rockstargames.com
monolithic_1  | new host: patches.rockstargames.com
monolithic_1  | Reading cache sony from sony.txt
monolithic_1  | host: gs2.ww.prod.dl.playstation.net
monolithic_1  | new host: gs2.ww.prod.dl.playstation.net
monolithic_1  | host: gs2.sonycoment.loris-e.llnwd.net
monolithic_1  | new host: gs2.sonycoment.loris-e.llnwd.net
monolithic_1  | Reading cache square from square.txt
monolithic_1  | host: patch-dl.ffxiv.com
monolithic_1  | new host: patch-dl.ffxiv.com
monolithic_1  | Reading cache steam from steam.txt
monolithic_1  | host: lancache.steamcontent.com
monolithic_1  | new host: lancache.steamcontent.com
monolithic_1  | host: *.content.steampowered.com
monolithic_1  | new host: *.content.steampowered.com
monolithic_1  | host: content1.steampowered.com
monolithic_1  | new host: content1.steampowered.com
monolithic_1  | host: content2.steampowered.com
monolithic_1  | new host: content2.steampowered.com
monolithic_1  | host: content3.steampowered.com
monolithic_1  | new host: content3.steampowered.com
monolithic_1  | host: content4.steampowered.com
monolithic_1  | new host: content4.steampowered.com
monolithic_1  | host: content5.steampowered.com
monolithic_1  | new host: content5.steampowered.com
monolithic_1  | host: content6.steampowered.com
monolithic_1  | new host: content6.steampowered.com
monolithic_1  | host: content7.steampowered.com
monolithic_1  | new host: content7.steampowered.com
monolithic_1  | host: content8.steampowered.com
monolithic_1  | new host: content8.steampowered.com
monolithic_1  | host: cs.steampowered.com
monolithic_1  | new host: cs.steampowered.com
monolithic_1  | host: steamcontent.com
monolithic_1  | new host: steamcontent.com
monolithic_1  | host: client-download.steampowered.com
monolithic_1  | new host: client-download.steampowered.com
monolithic_1  | host: *.hsar.steampowered.com.edgesuite.net
monolithic_1  | new host: *.hsar.steampowered.com.edgesuite.net
monolithic_1  | host: *.akamai.steamstatic.com
monolithic_1  | new host: *.akamai.steamstatic.com
monolithic_1  | host: content-origin.steampowered.com
monolithic_1  | new host: content-origin.steampowered.com
monolithic_1  | host: clientconfig.akamai.steamtransparent.com
monolithic_1  | new host: clientconfig.akamai.steamtransparent.com
monolithic_1  | host: steampipe.akamaized.net
monolithic_1  | new host: steampipe.akamaized.net
monolithic_1  | host: edgecast.steamstatic.com
monolithic_1  | new host: edgecast.steamstatic.com
monolithic_1  | host: steam.apac.qtlglb.com.mwcloudcdn.com
monolithic_1  | new host: steam.apac.qtlglb.com.mwcloudcdn.com
monolithic_1  | host: *.cs.steampowered.com
monolithic_1  | new host: *.cs.steampowered.com
monolithic_1  | host: *.cm.steampowered.com
monolithic_1  | new host: *.cm.steampowered.com
monolithic_1  | host: *.edgecast.steamstatic.com
monolithic_1  | new host: *.edgecast.steamstatic.com
monolithic_1  | host: *.steamcontent.com
monolithic_1  | new host: *.steamcontent.com
monolithic_1  | host: cdn1-sea1.valve.net
monolithic_1  | new host: cdn1-sea1.valve.net
monolithic_1  | host: cdn2-sea1.valve.net
monolithic_1  | new host: cdn2-sea1.valve.net
monolithic_1  | host: *.steam-content-dnld-1.apac-1-cdn.cqloud.com
monolithic_1  | new host: *.steam-content-dnld-1.apac-1-cdn.cqloud.com
monolithic_1  | host: *.steam-content-dnld-1.eu-c1-cdn.cqloud.com
monolithic_1  | new host: *.steam-content-dnld-1.eu-c1-cdn.cqloud.com
monolithic_1  | host: steam.apac.qtlglb.com
monolithic_1  | new host: steam.apac.qtlglb.com
monolithic_1  | host: edge.steam-dns.top.comcast.net
monolithic_1  | new host: edge.steam-dns.top.comcast.net
monolithic_1  | host: edge.steam-dns-2.top.comcast.net
monolithic_1  | new host: edge.steam-dns-2.top.comcast.net
monolithic_1  | host: steam.naeu.qtlglb.com
monolithic_1  | new host: steam.naeu.qtlglb.com
monolithic_1  | host: steampipe-kr.akamaized.net
monolithic_1  | new host: steampipe-kr.akamaized.net
monolithic_1  | host: steam.ix.asn.au
monolithic_1  | new host: steam.ix.asn.au
monolithic_1  | host: steam.eca.qtlglb.com
monolithic_1  | new host: steam.eca.qtlglb.com
monolithic_1  | host: steam.cdn.on.net
monolithic_1  | new host: steam.cdn.on.net
monolithic_1  | host: update5.dota2.wmsj.cn
monolithic_1  | new host: update5.dota2.wmsj.cn
monolithic_1  | host: update2.dota2.wmsj.cn
monolithic_1  | new host: update2.dota2.wmsj.cn
monolithic_1  | host: update6.dota2.wmsj.cn
monolithic_1  | new host: update6.dota2.wmsj.cn
monolithic_1  | host: update3.dota2.wmsj.cn
monolithic_1  | new host: update3.dota2.wmsj.cn
monolithic_1  | host: update1.dota2.wmsj.cn
monolithic_1  | new host: update1.dota2.wmsj.cn
monolithic_1  | host: update4.dota2.wmsj.cn
monolithic_1  | new host: update4.dota2.wmsj.cn
monolithic_1  | host: update5.csgo.wmsj.cn
monolithic_1  | new host: update5.csgo.wmsj.cn
monolithic_1  | host: update2.csgo.wmsj.cn
monolithic_1  | new host: update2.csgo.wmsj.cn
monolithic_1  | host: update4.csgo.wmsj.cn
monolithic_1  | new host: update4.csgo.wmsj.cn
monolithic_1  | host: update3.csgo.wmsj.cn
monolithic_1  | new host: update3.csgo.wmsj.cn
monolithic_1  | host: update6.csgo.wmsj.cn
monolithic_1  | new host: update6.csgo.wmsj.cn
monolithic_1  | host: update1.csgo.wmsj.cn
monolithic_1  | new host: update1.csgo.wmsj.cn
monolithic_1  | host: st.dl.bscstorage.net
monolithic_1  | new host: st.dl.bscstorage.net
monolithic_1  | host: cdn.mileweb.cs.steampowered.com.8686c.com
monolithic_1  | new host: cdn.mileweb.cs.steampowered.com.8686c.com
monolithic_1  | host: steamcdn-a.akamaihd.net
monolithic_1  | new host: steamcdn-a.akamaihd.net
monolithic_1  | Reading cache uplay from uplay.txt
monolithic_1  | host: *.cdn.ubi.com
monolithic_1  | new host: *.cdn.ubi.com
monolithic_1  | Reading cache teso from teso.txt
monolithic_1  | host: live.patcher.elderscrollsonline.com
monolithic_1  | new host: live.patcher.elderscrollsonline.com
monolithic_1  | Reading cache twitch from twitch.txt
monolithic_1  | host: d3rmjivj4k4f0t.cloudfront.net
monolithic_1  | new host: d3rmjivj4k4f0t.cloudfront.net
monolithic_1  | host: addons.forgesvc.net
monolithic_1  | new host: addons.forgesvc.net
monolithic_1  | host: media.forgecdn.net
monolithic_1  | new host: media.forgecdn.net
monolithic_1  | host: files.forgecdn.net
monolithic_1  | new host: files.forgecdn.net
monolithic_1  | Reading cache warframe from warframe.txt
monolithic_1  | host: content.warframe.com
monolithic_1  | new host: content.warframe.com
monolithic_1  | Reading cache wargaming from wargaming.net.txt
monolithic_1  | host: dl1.wargaming.net
monolithic_1  | new host: dl1.wargaming.net
monolithic_1  | host: dl2.wargaming.net
monolithic_1  | new host: dl2.wargaming.net
monolithic_1  | host: wg.gcdn.co
monolithic_1  | new host: wg.gcdn.co
monolithic_1  | host: wgusst-na.wargaming.net
monolithic_1  | new host: wgusst-na.wargaming.net
monolithic_1  | host: wgusst-eu.wargaming.net
monolithic_1  | new host: wgusst-eu.wargaming.net
monolithic_1  | host: update-v4r4h10x.worldofwarships.com
monolithic_1  | new host: update-v4r4h10x.worldofwarships.com
monolithic_1  | host: wgus-wotasia.wargaming.net
monolithic_1  | new host: wgus-wotasia.wargaming.net
monolithic_1  | host: dl-wot-ak.wargaming.net
monolithic_1  | new host: dl-wot-ak.wargaming.net
monolithic_1  | host: dl-wot-gc.wargaming.net
monolithic_1  | new host: dl-wot-gc.wargaming.net
monolithic_1  | host: dl-wot-se.wargaming.net
monolithic_1  | new host: dl-wot-se.wargaming.net
monolithic_1  | host: dl-wot-cdx.wargaming.net
monolithic_1  | new host: dl-wot-cdx.wargaming.net
monolithic_1  | host: dl-wows-ak.wargaming.net
monolithic_1  | new host: dl-wows-ak.wargaming.net
monolithic_1  | host: dl-wows-gc.wargaming.net
monolithic_1  | new host: dl-wows-gc.wargaming.net
monolithic_1  | host: dl-wows-se.wargaming.net
monolithic_1  | new host: dl-wows-se.wargaming.net
monolithic_1  | host: dl-wows-cdx.wargaming.net
monolithic_1  | new host: dl-wows-cdx.wargaming.net
monolithic_1  | host: dl-wowp-ak.wargaming.net
monolithic_1  | new host: dl-wowp-ak.wargaming.net
monolithic_1  | host: dl-wowp-gc.wargaming.net
monolithic_1  | new host: dl-wowp-gc.wargaming.net
monolithic_1  | host: dl-wowp-se.wargaming.net
monolithic_1  | new host: dl-wowp-se.wargaming.net
monolithic_1  | host: dl-wowp-cdx.wargaming.net
monolithic_1  | new host: dl-wowp-cdx.wargaming.net
monolithic_1  | Reading cache wsus from windowsupdates.txt
monolithic_1  | host: *.windowsupdate.com
monolithic_1  | new host: *.windowsupdate.com
monolithic_1  | host: windowsupdate.com
monolithic_1  | new host: windowsupdate.com
monolithic_1  | host: *.dl.delivery.mp.microsoft.com
monolithic_1  | new host: *.dl.delivery.mp.microsoft.com
monolithic_1  | host: dl.delivery.mp.microsoft.com
monolithic_1  | new host: dl.delivery.mp.microsoft.com
monolithic_1  | host: *.update.microsoft.com
monolithic_1  | new host: *.update.microsoft.com
monolithic_1  | host: *.do.dsp.mp.microsoft.com
monolithic_1  | new host: *.do.dsp.mp.microsoft.com
monolithic_1  | host: *.microsoft.com.edgesuite.net
monolithic_1  | new host: *.microsoft.com.edgesuite.net
monolithic_1  | host: amupdatedl.microsoft.com
monolithic_1  | new host: amupdatedl.microsoft.com
monolithic_1  | host: amupdatedl2.microsoft.com
monolithic_1  | new host: amupdatedl2.microsoft.com
monolithic_1  | host: amupdatedl3.microsoft.com
monolithic_1  | new host: amupdatedl3.microsoft.com
monolithic_1  | host: amupdatedl4.microsoft.com
monolithic_1  | new host: amupdatedl4.microsoft.com
monolithic_1  | host: amupdatedl5.microsoft.com
monolithic_1  | new host: amupdatedl5.microsoft.com
monolithic_1  | Reading cache xboxlive from xboxlive.txt
monolithic_1  | host: assets1.xboxlive.com
monolithic_1  | new host: assets1.xboxlive.com
monolithic_1  | host: assets2.xboxlive.com
monolithic_1  | new host: assets2.xboxlive.com
monolithic_1  | host: dlassets.xboxlive.com
monolithic_1  | new host: dlassets.xboxlive.com
monolithic_1  | host: xboxone.loris.llnwd.net
monolithic_1  | new host: xboxone.loris.llnwd.net
monolithic_1  | host: *.xboxone.loris.llnwd.net
monolithic_1  | new host: *.xboxone.loris.llnwd.net
monolithic_1  | host: xboxone.vo.llnwd.net
monolithic_1  | new host: xboxone.vo.llnwd.net
monolithic_1  | host: xbox-mbr.xboxlive.com
monolithic_1  | new host: xbox-mbr.xboxlive.com
monolithic_1  | host: assets1.xboxlive.com.nsatc.net
monolithic_1  | new host: assets1.xboxlive.com.nsatc.net
monolithic_1  | host: xvcf1.xboxlive.com
monolithic_1  | new host: xvcf1.xboxlive.com
monolithic_1  | map "$http_user_agent£££$http_host" $cacheidentifier {
monolithic_1  |     default $http_host;
monolithic_1  |     ~Valve\/Steam\ HTTP\ Client\ 1\.0£££.* steam;
monolithic_1  |     ~.*£££.*?assetcdn\.101\.arenanetworks\.com arenanet;
monolithic_1  |     ~.*£££.*?assetcdn\.102\.arenanetworks\.com arenanet;
monolithic_1  |     ~.*£££.*?assetcdn\.103\.arenanetworks\.com arenanet;
monolithic_1  |     ~.*£££.*?live\.patcher\.bladeandsoul\.com arenanet;
monolithic_1  |     ~.*£££.*?dist\.blizzard\.com blizzard;
monolithic_1  |     ~.*£££.*?dist\.blizzard\.com\.edgesuite\.net blizzard;
monolithic_1  |     ~.*£££.*?llnw\.blizzard\.com blizzard;
monolithic_1  |     ~.*£££.*?edgecast\.blizzard\.com blizzard;
monolithic_1  |     ~.*£££.*?blizzard\.vo\.llnwd\.net blizzard;
monolithic_1  |     ~.*£££.*?blzddist1-a\.akamaihd\.net blizzard;
monolithic_1  |     ~.*£££.*?blzddist2-a\.akamaihd\.net blizzard;
monolithic_1  |     ~.*£££.*?blzddist3-a\.akamaihd\.net blizzard;
monolithic_1  |     ~.*£££.*?blzddist4-a\.akamaihd\.net blizzard;
monolithic_1  |     ~.*£££.*?level3\.blizzard\.com blizzard;
monolithic_1  |     ~.*£££.*?nydus\.battle\.net blizzard;
monolithic_1  |     ~.*£££.*?edge\.blizzard\.top\.comcast\.net blizzard;
monolithic_1  |     ~.*£££.*?cdn\.blizzard\.com blizzard;
monolithic_1  |     ~.*£££.*?.*\.cdn\.blizzard\.com blizzard;
monolithic_1  |     ~.*£££.*?cdn-11\.eft-store\.com bsg;
monolithic_1  |     ~.*£££.*?cl-453343cd\.gcdn\.co bsg;
monolithic_1  |     ~.*£££.*?cdn\.homecomingservers\.com cityofheroes;
monolithic_1  |     ~.*£££.*?nsa\.tools cityofheroes;
monolithic_1  |     ~.*£££.*?#Daybreakgames daybreak;
monolithic_1  |     ~.*£££.*?# daybreak;
monolithic_1  |     ~.*£££.*?#DoNOTcachemanifest\.patch\.daybreakgames\.com daybreak;
monolithic_1  |     ~.*£££.*?# daybreak;
monolithic_1  |     ~.*£££.*?#PS2 daybreak;
monolithic_1  |     ~.*£££.*?pls\.patch\.daybreakgames\.com daybreak;
monolithic_1  |     ~.*£££.*?cdn1\.epicgames\.com epicgames;
monolithic_1  |     ~.*£££.*?cdn\.unrealengine\.com epicgames;
monolithic_1  |     ~.*£££.*?cdn1\.unrealengine\.com epicgames;
monolithic_1  |     ~.*£££.*?cdn2\.unrealengine\.com epicgames;
monolithic_1  |     ~.*£££.*?cdn3\.unrealengine\.com epicgames;
monolithic_1  |     ~.*£££.*?download\.epicgames\.com epicgames;
monolithic_1  |     ~.*£££.*?download2\.epicgames\.com epicgames;
monolithic_1  |     ~.*£££.*?download3\.epicgames\.com epicgames;
monolithic_1  |     ~.*£££.*?download4\.epicgames\.com epicgames;
monolithic_1  |     ~.*£££.*?epicgames-download1\.akamaized\.net epicgames;
monolithic_1  |     ~.*£££.*?cdn\.zaonce\.net frontier;
monolithic_1  |     ~.*£££.*?hirez\.http\.internapcdn\.net hirez;
monolithic_1  |     ~.*£££.*?filedelivery\.nexusmods\.com nexusmods;
monolithic_1  |     ~.*£££.*?level3\.nwhttppatch\.crypticstudios\.com neverwinter;
monolithic_1  |     ~.*£££.*?ccs\.cdn\.wup\.shop\.nintendo\.com nintendo;
monolithic_1  |     ~.*£££.*?ccs\.cdn\.wup\.shop\.nintendo\.net nintendo;
monolithic_1  |     ~.*£££.*?ccs\.cdn\.wup\.shop\.nintendo\.net\.edgesuite\.net nintendo;
monolithic_1  |     ~.*£££.*?geisha-wup\.cdn\.nintendo\.net nintendo;
monolithic_1  |     ~.*£££.*?geisha-wup\.cdn\.nintendo\.net\.edgekey\.net nintendo;
monolithic_1  |     ~.*£££.*?idbe-wup\.cdn\.nintendo\.net nintendo;
monolithic_1  |     ~.*£££.*?idbe-wup\.cdn\.nintendo\.net\.edgekey\.net nintendo;
monolithic_1  |     ~.*£££.*?ecs-lp1\.hac\.shop\.nintendo\.net nintendo;
monolithic_1  |     ~.*£££.*?receive-lp1\.dg\.srv\.nintendo\.net nintendo;
monolithic_1  |     ~.*£££.*?.*\.wup\.shop\.nintendo\.net nintendo;
monolithic_1  |     ~.*£££.*?.*\.wup\.eshop\.nintendo\.net nintendo;
monolithic_1  |     ~.*£££.*?.*\.hac\.lp1\.d4c\.nintendo\.net nintendo;
monolithic_1  |     ~.*£££.*?.*\.hac\.lp1\.eshop\.nintendo\.net nintendo;
monolithic_1  |     ~.*£££.*?#WARNING:Originhasbeenseendownloadinghttpsclientdownloadsonorigin-a\.akamaihd\.net\.Asolutionshouldbeinplacetoforwardhttpstotheoriginserver(egsniproxy) origin;
monolithic_1  |     ~.*£££.*?origin-a\.akamaihd\.net origin;
monolithic_1  |     ~.*£££.*?lvlt\.cdn\.ea\.com origin;
monolithic_1  |     ~.*£££.*?patchcdn\.pathofexile\.com pathofexile;
monolithic_1  |     ~.*£££.*?rxp-lv\.cncirc\.net renegadex;
monolithic_1  |     ~.*£££.*?cronub\.fairplayinc\.uk renegadex;
monolithic_1  |     ~.*£££.*?amirror\.tyrant\.gg renegadex;
monolithic_1  |     ~.*£££.*?mirror\.usa\.tyrant\.gg renegadex;
monolithic_1  |     ~.*£££.*?renx\.b-cdn\.net renegadex;
monolithic_1  |     ~.*£££.*?l3cdn\.riotgames\.com riot;
monolithic_1  |     ~.*£££.*?worldwide\.l3cdn\.riotgames\.com riot;
monolithic_1  |     ~.*£££.*?riotgamespatcher-a\.akamaihd\.net riot;
monolithic_1  |     ~.*£££.*?riotgamespatcher-a\.akamaihd\.net\.edgesuite\.net riot;
monolithic_1  |     ~.*£££.*?.*\.dyn\.riotcdn\.net riot;
monolithic_1  |     ~.*£££.*?patches\.rockstargames\.com rockstar;
monolithic_1  |     ~.*£££.*?gs2\.ww\.prod\.dl\.playstation\.net sony;
monolithic_1  |     ~.*£££.*?gs2\.sonycoment\.loris-e\.llnwd\.net sony;
monolithic_1  |     ~.*£££.*?patch-dl\.ffxiv\.com square;
monolithic_1  |     ~.*£££.*?lancache\.steamcontent\.com steam;
monolithic_1  |     ~.*£££.*?.*\.content\.steampowered\.com steam;
monolithic_1  |     ~.*£££.*?content1\.steampowered\.com steam;
monolithic_1  |     ~.*£££.*?content2\.steampowered\.com steam;
monolithic_1  |     ~.*£££.*?content3\.steampowered\.com steam;
monolithic_1  |     ~.*£££.*?content4\.steampowered\.com steam;
monolithic_1  |     ~.*£££.*?content5\.steampowered\.com steam;
monolithic_1  |     ~.*£££.*?content6\.steampowered\.com steam;
monolithic_1  |     ~.*£££.*?content7\.steampowered\.com steam;
monolithic_1  |     ~.*£££.*?content8\.steampowered\.com steam;
monolithic_1  |     ~.*£££.*?cs\.steampowered\.com steam;
monolithic_1  |     ~.*£££.*?steamcontent\.com steam;
monolithic_1  |     ~.*£££.*?client-download\.steampowered\.com steam;
monolithic_1  |     ~.*£££.*?.*\.hsar\.steampowered\.com\.edgesuite\.net steam;
monolithic_1  |     ~.*£££.*?.*\.akamai\.steamstatic\.com steam;
monolithic_1  |     ~.*£££.*?content-origin\.steampowered\.com steam;
monolithic_1  |     ~.*£££.*?clientconfig\.akamai\.steamtransparent\.com steam;
monolithic_1  |     ~.*£££.*?steampipe\.akamaized\.net steam;
monolithic_1  |     ~.*£££.*?edgecast\.steamstatic\.com steam;
monolithic_1  |     ~.*£££.*?steam\.apac\.qtlglb\.com\.mwcloudcdn\.com steam;
monolithic_1  |     ~.*£££.*?.*\.cs\.steampowered\.com steam;
monolithic_1  |     ~.*£££.*?.*\.cm\.steampowered\.com steam;
monolithic_1  |     ~.*£££.*?.*\.edgecast\.steamstatic\.com steam;
monolithic_1  |     ~.*£££.*?.*\.steamcontent\.com steam;
monolithic_1  |     ~.*£££.*?cdn1-sea1\.valve\.net steam;
monolithic_1  |     ~.*£££.*?cdn2-sea1\.valve\.net steam;
monolithic_1  |     ~.*£££.*?.*\.steam-content-dnld-1\.apac-1-cdn\.cqloud\.com steam;
monolithic_1  |     ~.*£££.*?.*\.steam-content-dnld-1\.eu-c1-cdn\.cqloud\.com steam;
monolithic_1  |     ~.*£££.*?steam\.apac\.qtlglb\.com steam;
monolithic_1  |     ~.*£££.*?edge\.steam-dns\.top\.comcast\.net steam;
monolithic_1  |     ~.*£££.*?edge\.steam-dns-2\.top\.comcast\.net steam;
monolithic_1  |     ~.*£££.*?steam\.naeu\.qtlglb\.com steam;
monolithic_1  |     ~.*£££.*?steampipe-kr\.akamaized\.net steam;
monolithic_1  |     ~.*£££.*?steam\.ix\.asn\.au steam;
monolithic_1  |     ~.*£££.*?steam\.eca\.qtlglb\.com steam;
monolithic_1  |     ~.*£££.*?steam\.cdn\.on\.net steam;
monolithic_1  |     ~.*£££.*?update5\.dota2\.wmsj\.cn steam;
monolithic_1  |     ~.*£££.*?update2\.dota2\.wmsj\.cn steam;
monolithic_1  |     ~.*£££.*?update6\.dota2\.wmsj\.cn steam;
monolithic_1  |     ~.*£££.*?update3\.dota2\.wmsj\.cn steam;
monolithic_1  |     ~.*£££.*?update1\.dota2\.wmsj\.cn steam;
monolithic_1  |     ~.*£££.*?update4\.dota2\.wmsj\.cn steam;
monolithic_1  |     ~.*£££.*?update5\.csgo\.wmsj\.cn steam;
monolithic_1  |     ~.*£££.*?update2\.csgo\.wmsj\.cn steam;
monolithic_1  |     ~.*£££.*?update4\.csgo\.wmsj\.cn steam;
monolithic_1  |     ~.*£££.*?update3\.csgo\.wmsj\.cn steam;
monolithic_1  |     ~.*£££.*?update6\.csgo\.wmsj\.cn steam;
monolithic_1  |     ~.*£££.*?update1\.csgo\.wmsj\.cn steam;
monolithic_1  |     ~.*£££.*?st\.dl\.bscstorage\.net steam;
monolithic_1  |     ~.*£££.*?cdn\.mileweb\.cs\.steampowered\.com\.8686c\.com steam;
monolithic_1  |     ~.*£££.*?steamcdn-a\.akamaihd\.net steam;
monolithic_1  |     ~.*£££.*?.*\.cdn\.ubi\.com uplay;
monolithic_1  |     ~.*£££.*?live\.patcher\.elderscrollsonline\.com teso;
monolithic_1  |     ~.*£££.*?d3rmjivj4k4f0t\.cloudfront\.net twitch;
monolithic_1  |     ~.*£££.*?addons\.forgesvc\.net twitch;
monolithic_1  |     ~.*£££.*?media\.forgecdn\.net twitch;
monolithic_1  |     ~.*£££.*?files\.forgecdn\.net twitch;
monolithic_1  |     ~.*£££.*?content\.warframe\.com warframe;
monolithic_1  |     ~.*£££.*?dl1\.wargaming\.net wargaming;
monolithic_1  |     ~.*£££.*?dl2\.wargaming\.net wargaming;
monolithic_1  |     ~.*£££.*?wg\.gcdn\.co wargaming;
monolithic_1  |     ~.*£££.*?wgusst-na\.wargaming\.net wargaming;
monolithic_1  |     ~.*£££.*?wgusst-eu\.wargaming\.net wargaming;
monolithic_1  |     ~.*£££.*?update-v4r4h10x\.worldofwarships\.com wargaming;
monolithic_1  |     ~.*£££.*?wgus-wotasia\.wargaming\.net wargaming;
monolithic_1  |     ~.*£££.*?dl-wot-ak\.wargaming\.net wargaming;
monolithic_1  |     ~.*£££.*?dl-wot-gc\.wargaming\.net wargaming;
monolithic_1  |     ~.*£££.*?dl-wot-se\.wargaming\.net wargaming;
monolithic_1  |     ~.*£££.*?dl-wot-cdx\.wargaming\.net wargaming;
monolithic_1  |     ~.*£££.*?dl-wows-ak\.wargaming\.net wargaming;
monolithic_1  |     ~.*£££.*?dl-wows-gc\.wargaming\.net wargaming;
monolithic_1  |     ~.*£££.*?dl-wows-se\.wargaming\.net wargaming;
monolithic_1  |     ~.*£££.*?dl-wows-cdx\.wargaming\.net wargaming;
monolithic_1  |     ~.*£££.*?dl-wowp-ak\.wargaming\.net wargaming;
monolithic_1  |     ~.*£££.*?dl-wowp-gc\.wargaming\.net wargaming;
monolithic_1  |     ~.*£££.*?dl-wowp-se\.wargaming\.net wargaming;
monolithic_1  |     ~.*£££.*?dl-wowp-cdx\.wargaming\.net wargaming;
monolithic_1  |     ~.*£££.*?.*\.windowsupdate\.com wsus;
monolithic_1  |     ~.*£££.*?windowsupdate\.com wsus;
monolithic_1  |     ~.*£££.*?.*\.dl\.delivery\.mp\.microsoft\.com wsus;
monolithic_1  |     ~.*£££.*?dl\.delivery\.mp\.microsoft\.com wsus;
monolithic_1  |     ~.*£££.*?.*\.update\.microsoft\.com wsus;
monolithic_1  |     ~.*£££.*?.*\.do\.dsp\.mp\.microsoft\.com wsus;
monolithic_1  |     ~.*£££.*?.*\.microsoft\.com\.edgesuite\.net wsus;
monolithic_1  |     ~.*£££.*?amupdatedl\.microsoft\.com wsus;
monolithic_1  |     ~.*£££.*?amupdatedl2\.microsoft\.com wsus;
monolithic_1  |     ~.*£££.*?amupdatedl3\.microsoft\.com wsus;
monolithic_1  |     ~.*£££.*?amupdatedl4\.microsoft\.com wsus;
monolithic_1  |     ~.*£££.*?amupdatedl5\.microsoft\.com wsus;
monolithic_1  |     ~.*£££.*?assets1\.xboxlive\.com xboxlive;
monolithic_1  |     ~.*£££.*?assets2\.xboxlive\.com xboxlive;
monolithic_1  |     ~.*£££.*?dlassets\.xboxlive\.com xboxlive;
monolithic_1  |     ~.*£££.*?xboxone\.loris\.llnwd\.net xboxlive;
monolithic_1  |     ~.*£££.*?.*\.xboxone\.loris\.llnwd\.net xboxlive;
monolithic_1  |     ~.*£££.*?xboxone\.vo\.llnwd\.net xboxlive;
monolithic_1  |     ~.*£££.*?xbox-mbr\.xboxlive\.com xboxlive;
monolithic_1  |     ~.*£££.*?assets1\.xboxlive\.com\.nsatc\.net xboxlive;
monolithic_1  |     ~.*£££.*?xvcf1\.xboxlive\.com xboxlive;
monolithic_1  | }
monolithic_1  | Executing hook /hooks/entrypoint-pre.d/19_doc_root_setup
monolithic_1  | /var/www/html already exists.
monolithic_1  | Setting document root to /var/www/html
monolithic_1  | Executing hook /hooks/entrypoint-pre.d/20_perms_check.sh
monolithic_1  | Running fast permissions check
monolithic_1  | Fast permissions check successful, if you have any permissions error try running with -e FORCE_PERMS_CHECK = true
monolithic_1  | Executing hook /hooks/entrypoint-pre.d/20_ssl_setup
monolithic_1  | Not enabling SSL as neither key nor cert provided.
monolithic_1  | Executing hook /hooks/supervisord-pre.d/20_test_files_setup
monolithic_1  | Checking if /var/www/html is empty - Directory not empty.. don't touch content
monolithic_1  | Executing hook /hooks/supervisord-pre.d/21_cleanup_log_files
monolithic_1  | Cleaning up log files older than 3560 days
monolithic_1  | Executing hook /hooks/supervisord-pre.d/99_config_check.sh
monolithic_1  | Currently configured config:
monolithic_1  | NGINX CONFIG DUMP FOR /etc/nginx/nginx.conf
monolithic_1  | # Including /etc/nginx/nginx.conf
monolithic_1  | user www-data;
monolithic_1  | # Including /etc/nginx/workers.conf
monolithic_1  | worker_processes auto;
monolithic_1  | # Finished including /etc/nginx/workers.conf
monolithic_1  | pid /run/nginx.pid;
monolithic_1  | events {
monolithic_1  | worker_connections 4096;
monolithic_1  | multi_accept on;
monolithic_1  | use epoll;
monolithic_1  | }
monolithic_1  | 
monolithic_1  | http {
monolithic_1  | aio threads;
monolithic_1  | sendfile on;
monolithic_1  | tcp_nopush on;
monolithic_1  | tcp_nodelay on;
monolithic_1  | keepalive_timeout 65;
monolithic_1  | types_hash_max_size 2048;
monolithic_1  | 
monolithic_1  | # Including /etc/nginx/mime.types
monolithic_1  | 
monolithic_1  | types {
monolithic_1  | text/html html htm shtml;
monolithic_1  | text/css css;
monolithic_1  | text/xml xml;
monolithic_1  | image/gif gif;
monolithic_1  | image/jpeg jpeg jpg;
monolithic_1  | application/javascript js;
monolithic_1  | application/atom+xml atom;
monolithic_1  | application/rss+xml rss;
monolithic_1  | 
monolithic_1  | text/mathml mml;
monolithic_1  | text/plain txt;
monolithic_1  | text/vnd.sun.j2me.app-descriptor jad;
monolithic_1  | text/vnd.wap.wml wml;
monolithic_1  | text/x-component htc;
monolithic_1  | 
monolithic_1  | image/png png;
monolithic_1  | image/tiff tif tiff;
monolithic_1  | image/vnd.wap.wbmp wbmp;
monolithic_1  | image/x-icon ico;
monolithic_1  | image/x-jng jng;
monolithic_1  | image/x-ms-bmp bmp;
monolithic_1  | image/svg+xml svg svgz;
monolithic_1  | image/webp webp;
monolithic_1  | 
monolithic_1  | application/font-woff woff;
monolithic_1  | application/java-archive jar war ear;
monolithic_1  | application/json json;
monolithic_1  | application/mac-binhex40 hqx;
monolithic_1  | application/msword doc;
monolithic_1  | application/pdf pdf;
monolithic_1  | application/postscript ps eps ai;
monolithic_1  | application/rtf rtf;
monolithic_1  | application/vnd.apple.mpegurl m3u8;
monolithic_1  | application/vnd.ms-excel xls;
monolithic_1  | application/vnd.ms-fontobject eot;
monolithic_1  | application/vnd.ms-powerpoint ppt;
monolithic_1  | application/vnd.wap.wmlc wmlc;
monolithic_1  | application/vnd.google-earth.kml+xml kml;
monolithic_1  | application/vnd.google-earth.kmz kmz;
monolithic_1  | application/x-7z-compressed 7z;
monolithic_1  | application/x-cocoa cco;
monolithic_1  | application/x-java-archive-diff jardiff;
monolithic_1  | application/x-java-jnlp-file jnlp;
monolithic_1  | application/x-makeself run;
monolithic_1  | application/x-perl pl pm;
monolithic_1  | application/x-pilot prc pdb;
monolithic_1  | application/x-rar-compressed rar;
monolithic_1  | application/x-redhat-package-manager rpm;
monolithic_1  | application/x-sea sea;
monolithic_1  | application/x-shockwave-flash swf;
monolithic_1  | application/x-stuffit sit;
monolithic_1  | application/x-tcl tcl tk;
monolithic_1  | application/x-x509-ca-cert der pem crt;
monolithic_1  | application/x-xpinstall xpi;
monolithic_1  | application/xhtml+xml xhtml;
monolithic_1  | application/xspf+xml xspf;
monolithic_1  | application/zip zip;
monolithic_1  | 
monolithic_1  | application/octet-stream bin exe dll;
monolithic_1  | application/octet-stream deb;
monolithic_1  | application/octet-stream dmg;
monolithic_1  | application/octet-stream iso img;
monolithic_1  | application/octet-stream msi msp msm;
monolithic_1  | 
monolithic_1  | application/vnd.openxmlformats-officedocument.wordprocessingml.document docx;
monolithic_1  | application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx;
monolithic_1  | application/vnd.openxmlformats-officedocument.presentationml.presentation pptx;
monolithic_1  | 
monolithic_1  | audio/midi mid midi kar;
monolithic_1  | audio/mpeg mp3;
monolithic_1  | audio/ogg ogg;
monolithic_1  | audio/x-m4a m4a;
monolithic_1  | audio/x-realaudio ra;
monolithic_1  | 
monolithic_1  | video/3gpp 3gpp 3gp;
monolithic_1  | video/mp2t ts;
monolithic_1  | video/mp4 mp4;
monolithic_1  | video/mpeg mpeg mpg;
monolithic_1  | video/quicktime mov;
monolithic_1  | video/webm webm;
monolithic_1  | video/x-flv flv;
monolithic_1  | video/x-m4v m4v;
monolithic_1  | video/x-mng mng;
monolithic_1  | video/x-ms-asf asx asf;
monolithic_1  | video/x-ms-wmv wmv;
monolithic_1  | video/x-msvideo avi;
monolithic_1  | }
monolithic_1  | # Finished including /etc/nginx/mime.types
monolithic_1  | default_type application/octet-stream;
monolithic_1  | 
monolithic_1  | access_log /var/log/nginx/access.log;
monolithic_1  | error_log /var/log/nginx/error.log;
monolithic_1  | 
monolithic_1  | 
monolithic_1  | gzip on;
monolithic_1  | 
monolithic_1  | # Including /etc/nginx/conf.d/10_log_format.conf
monolithic_1  | log_format cachelog '[$cacheidentifier] $remote_addr / $http_x_forwarded_for - $remote_user [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent" "$upstream_cache_status" "$host" "$http_range"';
monolithic_1  | 
monolithic_1  | # Finished including /etc/nginx/conf.d/10_log_format.conf
monolithic_1  | # Including /etc/nginx/conf.d/20_proxy_cache_path.conf
monolithic_1  | proxy_cache_path /data/cache/cache levels=2:2 keys_zone=generic:500m inactive=200d max_size=2000000m loader_files=1000 loader_sleep=50ms loader_threshold=300ms use_temp_path=off;
monolithic_1  | # Finished including /etc/nginx/conf.d/20_proxy_cache_path.conf
monolithic_1  | # Including /etc/nginx/conf.d/30_maps.conf
monolithic_1  | map "$http_user_agent£££$http_host" $cacheidentifier {
monolithic_1  | default $http_host;
monolithic_1  | ~Valve/Steam HTTP Client 1.0£££.* steam;
monolithic_1  | ~.*£££.*?assetcdn.101.arenanetworks.com arenanet;
monolithic_1  | ~.*£££.*?assetcdn.102.arenanetworks.com arenanet;
monolithic_1  | ~.*£££.*?assetcdn.103.arenanetworks.com arenanet;
monolithic_1  | ~.*£££.*?live.patcher.bladeandsoul.com arenanet;
monolithic_1  | ~.*£££.*?dist.blizzard.com blizzard;
monolithic_1  | ~.*£££.*?dist.blizzard.com.edgesuite.net blizzard;
monolithic_1  | ~.*£££.*?llnw.blizzard.com blizzard;
monolithic_1  | ~.*£££.*?edgecast.blizzard.com blizzard;
monolithic_1  | ~.*£££.*?blizzard.vo.llnwd.net blizzard;
monolithic_1  | ~.*£££.*?blzddist1-a.akamaihd.net blizzard;
monolithic_1  | ~.*£££.*?blzddist2-a.akamaihd.net blizzard;
monolithic_1  | ~.*£££.*?blzddist3-a.akamaihd.net blizzard;
monolithic_1  | ~.*£££.*?blzddist4-a.akamaihd.net blizzard;
monolithic_1  | ~.*£££.*?level3.blizzard.com blizzard;
monolithic_1  | ~.*£££.*?nydus.battle.net blizzard;
monolithic_1  | ~.*£££.*?edge.blizzard.top.comcast.net blizzard;
monolithic_1  | ~.*£££.*?cdn.blizzard.com blizzard;
monolithic_1  | ~.*£££.*?.*.cdn.blizzard.com blizzard;
monolithic_1  | ~.*£££.*?cdn-11.eft-store.com bsg;
monolithic_1  | ~.*£££.*?cl-453343cd.gcdn.co bsg;
monolithic_1  | ~.*£££.*?cdn.homecomingservers.com cityofheroes;
monolithic_1  | ~.*£££.*?nsa.tools cityofheroes;
monolithic_1  | ~.*£££.*?#Daybreakgames daybreak;
monolithic_1  | ~.*£££.*?# daybreak;
monolithic_1  | ~.*£££.*?#DoNOTcachemanifest.patch.daybreakgames.com daybreak;
monolithic_1  | ~.*£££.*?# daybreak;
monolithic_1  | ~.*£££.*?#PS2 daybreak;
monolithic_1  | ~.*£££.*?pls.patch.daybreakgames.com daybreak;
monolithic_1  | ~.*£££.*?cdn1.epicgames.com epicgames;
monolithic_1  | ~.*£££.*?cdn.unrealengine.com epicgames;
monolithic_1  | ~.*£££.*?cdn1.unrealengine.com epicgames;
monolithic_1  | ~.*£££.*?cdn2.unrealengine.com epicgames;
monolithic_1  | ~.*£££.*?cdn3.unrealengine.com epicgames;
monolithic_1  | ~.*£££.*?download.epicgames.com epicgames;
monolithic_1  | ~.*£££.*?download2.epicgames.com epicgames;
monolithic_1  | ~.*£££.*?download3.epicgames.com epicgames;
monolithic_1  | ~.*£££.*?download4.epicgames.com epicgames;
monolithic_1  | ~.*£££.*?epicgames-download1.akamaized.net epicgames;
monolithic_1  | ~.*£££.*?cdn.zaonce.net frontier;
monolithic_1  | ~.*£££.*?hirez.http.internapcdn.net hirez;
monolithic_1  | ~.*£££.*?filedelivery.nexusmods.com nexusmods;
monolithic_1  | ~.*£££.*?level3.nwhttppatch.crypticstudios.com neverwinter;
monolithic_1  | ~.*£££.*?ccs.cdn.wup.shop.nintendo.com nintendo;
monolithic_1  | ~.*£££.*?ccs.cdn.wup.shop.nintendo.net nintendo;
monolithic_1  | ~.*£££.*?ccs.cdn.wup.shop.nintendo.net.edgesuite.net nintendo;
monolithic_1  | ~.*£££.*?geisha-wup.cdn.nintendo.net nintendo;
monolithic_1  | ~.*£££.*?geisha-wup.cdn.nintendo.net.edgekey.net nintendo;
monolithic_1  | ~.*£££.*?idbe-wup.cdn.nintendo.net nintendo;
monolithic_1  | ~.*£££.*?idbe-wup.cdn.nintendo.net.edgekey.net nintendo;
monolithic_1  | ~.*£££.*?ecs-lp1.hac.shop.nintendo.net nintendo;
monolithic_1  | ~.*£££.*?receive-lp1.dg.srv.nintendo.net nintendo;
monolithic_1  | ~.*£££.*?.*.wup.shop.nintendo.net nintendo;
monolithic_1  | ~.*£££.*?.*.wup.eshop.nintendo.net nintendo;
monolithic_1  | ~.*£££.*?.*.hac.lp1.d4c.nintendo.net nintendo;
monolithic_1  | ~.*£££.*?.*.hac.lp1.eshop.nintendo.net nintendo;
monolithic_1  | ~.*£££.*?#WARNING:Originhasbeenseendownloadinghttpsclientdownloadsonorigin-a.akamaihd.net.Asolutionshouldbeinplacetoforwardhttpstotheoriginserver(egsniproxy) origin;
monolithic_1  | ~.*£££.*?origin-a.akamaihd.net origin;
monolithic_1  | ~.*£££.*?lvlt.cdn.ea.com origin;
monolithic_1  | ~.*£££.*?patchcdn.pathofexile.com pathofexile;
monolithic_1  | ~.*£££.*?rxp-lv.cncirc.net renegadex;
monolithic_1  | ~.*£££.*?cronub.fairplayinc.uk renegadex;
monolithic_1  | ~.*£££.*?amirror.tyrant.gg renegadex;
monolithic_1  | ~.*£££.*?mirror.usa.tyrant.gg renegadex;
monolithic_1  | ~.*£££.*?renx.b-cdn.net renegadex;
monolithic_1  | ~.*£££.*?l3cdn.riotgames.com riot;
monolithic_1  | ~.*£££.*?worldwide.l3cdn.riotgames.com riot;
monolithic_1  | ~.*£££.*?riotgamespatcher-a.akamaihd.net riot;
monolithic_1  | ~.*£££.*?riotgamespatcher-a.akamaihd.net.edgesuite.net riot;
monolithic_1  | ~.*£££.*?.*.dyn.riotcdn.net riot;
monolithic_1  | ~.*£££.*?patches.rockstargames.com rockstar;
monolithic_1  | ~.*£££.*?gs2.ww.prod.dl.playstation.net sony;
monolithic_1  | ~.*£££.*?gs2.sonycoment.loris-e.llnwd.net sony;
monolithic_1  | ~.*£££.*?patch-dl.ffxiv.com square;
monolithic_1  | ~.*£££.*?lancache.steamcontent.com steam;
monolithic_1  | ~.*£££.*?.*.content.steampowered.com steam;
monolithic_1  | ~.*£££.*?content1.steampowered.com steam;
monolithic_1  | ~.*£££.*?content2.steampowered.com steam;
monolithic_1  | ~.*£££.*?content3.steampowered.com steam;
monolithic_1  | ~.*£££.*?content4.steampowered.com steam;
monolithic_1  | ~.*£££.*?content5.steampowered.com steam;
monolithic_1  | ~.*£££.*?content6.steampowered.com steam;
monolithic_1  | ~.*£££.*?content7.steampowered.com steam;
monolithic_1  | ~.*£££.*?content8.steampowered.com steam;
monolithic_1  | ~.*£££.*?cs.steampowered.com steam;
monolithic_1  | ~.*£££.*?steamcontent.com steam;
monolithic_1  | ~.*£££.*?client-download.steampowered.com steam;
monolithic_1  | ~.*£££.*?.*.hsar.steampowered.com.edgesuite.net steam;
monolithic_1  | ~.*£££.*?.*.akamai.steamstatic.com steam;
monolithic_1  | ~.*£££.*?content-origin.steampowered.com steam;
monolithic_1  | ~.*£££.*?clientconfig.akamai.steamtransparent.com steam;
monolithic_1  | ~.*£££.*?steampipe.akamaized.net steam;
monolithic_1  | ~.*£££.*?edgecast.steamstatic.com steam;
monolithic_1  | ~.*£££.*?steam.apac.qtlglb.com.mwcloudcdn.com steam;
monolithic_1  | ~.*£££.*?.*.cs.steampowered.com steam;
monolithic_1  | ~.*£££.*?.*.cm.steampowered.com steam;
monolithic_1  | ~.*£££.*?.*.edgecast.steamstatic.com steam;
monolithic_1  | ~.*£££.*?.*.steamcontent.com steam;
monolithic_1  | ~.*£££.*?cdn1-sea1.valve.net steam;
monolithic_1  | ~.*£££.*?cdn2-sea1.valve.net steam;
monolithic_1  | ~.*£££.*?.*.steam-content-dnld-1.apac-1-cdn.cqloud.com steam;
monolithic_1  | ~.*£££.*?.*.steam-content-dnld-1.eu-c1-cdn.cqloud.com steam;
monolithic_1  | ~.*£££.*?steam.apac.qtlglb.com steam;
monolithic_1  | ~.*£££.*?edge.steam-dns.top.comcast.net steam;
monolithic_1  | ~.*£££.*?edge.steam-dns-2.top.comcast.net steam;
monolithic_1  | ~.*£££.*?steam.naeu.qtlglb.com steam;
monolithic_1  | ~.*£££.*?steampipe-kr.akamaized.net steam;
monolithic_1  | ~.*£££.*?steam.ix.asn.au steam;
monolithic_1  | ~.*£££.*?steam.eca.qtlglb.com steam;
monolithic_1  | ~.*£££.*?steam.cdn.on.net steam;
monolithic_1  | ~.*£££.*?update5.dota2.wmsj.cn steam;
monolithic_1  | ~.*£££.*?update2.dota2.wmsj.cn steam;
monolithic_1  | ~.*£££.*?update6.dota2.wmsj.cn steam;
monolithic_1  | ~.*£££.*?update3.dota2.wmsj.cn steam;
monolithic_1  | ~.*£££.*?update1.dota2.wmsj.cn steam;
monolithic_1  | ~.*£££.*?update4.dota2.wmsj.cn steam;
monolithic_1  | ~.*£££.*?update5.csgo.wmsj.cn steam;
monolithic_1  | ~.*£££.*?update2.csgo.wmsj.cn steam;
monolithic_1  | ~.*£££.*?update4.csgo.wmsj.cn steam;
monolithic_1  | ~.*£££.*?update3.csgo.wmsj.cn steam;
monolithic_1  | ~.*£££.*?update6.csgo.wmsj.cn steam;
monolithic_1  | ~.*£££.*?update1.csgo.wmsj.cn steam;
monolithic_1  | ~.*£££.*?st.dl.bscstorage.net steam;
monolithic_1  | ~.*£££.*?cdn.mileweb.cs.steampowered.com.8686c.com steam;
monolithic_1  | ~.*£££.*?steamcdn-a.akamaihd.net steam;
monolithic_1  | ~.*£££.*?.*.cdn.ubi.com uplay;
monolithic_1  | ~.*£££.*?live.patcher.elderscrollsonline.com teso;
monolithic_1  | ~.*£££.*?d3rmjivj4k4f0t.cloudfront.net twitch;
monolithic_1  | ~.*£££.*?addons.forgesvc.net twitch;
monolithic_1  | ~.*£££.*?media.forgecdn.net twitch;
monolithic_1  | ~.*£££.*?files.forgecdn.net twitch;
monolithic_1  | ~.*£££.*?content.warframe.com warframe;
monolithic_1  | ~.*£££.*?dl1.wargaming.net wargaming;
monolithic_1  | ~.*£££.*?dl2.wargaming.net wargaming;
monolithic_1  | ~.*£££.*?wg.gcdn.co wargaming;
monolithic_1  | ~.*£££.*?wgusst-na.wargaming.net wargaming;
monolithic_1  | ~.*£££.*?wgusst-eu.wargaming.net wargaming;
monolithic_1  | ~.*£££.*?update-v4r4h10x.worldofwarships.com wargaming;
monolithic_1  | ~.*£££.*?wgus-wotasia.wargaming.net wargaming;
monolithic_1  | ~.*£££.*?dl-wot-ak.wargaming.net wargaming;
monolithic_1  | ~.*£££.*?dl-wot-gc.wargaming.net wargaming;
monolithic_1  | ~.*£££.*?dl-wot-se.wargaming.net wargaming;
monolithic_1  | ~.*£££.*?dl-wot-cdx.wargaming.net wargaming;
monolithic_1  | ~.*£££.*?dl-wows-ak.wargaming.net wargaming;
monolithic_1  | ~.*£££.*?dl-wows-gc.wargaming.net wargaming;
monolithic_1  | ~.*£££.*?dl-wows-se.wargaming.net wargaming;
monolithic_1  | ~.*£££.*?dl-wows-cdx.wargaming.net wargaming;
monolithic_1  | ~.*£££.*?dl-wowp-ak.wargaming.net wargaming;
monolithic_1  | ~.*£££.*?dl-wowp-gc.wargaming.net wargaming;
monolithic_1  | ~.*£££.*?dl-wowp-se.wargaming.net wargaming;
monolithic_1  | ~.*£££.*?dl-wowp-cdx.wargaming.net wargaming;
monolithic_1  | ~.*£££.*?.*.windowsupdate.com wsus;
monolithic_1  | ~.*£££.*?windowsupdate.com wsus;
monolithic_1  | ~.*£££.*?.*.dl.delivery.mp.microsoft.com wsus;
monolithic_1  | ~.*£££.*?dl.delivery.mp.microsoft.com wsus;
monolithic_1  | ~.*£££.*?.*.update.microsoft.com wsus;
monolithic_1  | ~.*£££.*?.*.do.dsp.mp.microsoft.com wsus;
monolithic_1  | ~.*£££.*?.*.microsoft.com.edgesuite.net wsus;
monolithic_1  | ~.*£££.*?amupdatedl.microsoft.com wsus;
monolithic_1  | ~.*£££.*?amupdatedl2.microsoft.com wsus;
monolithic_1  | ~.*£££.*?amupdatedl3.microsoft.com wsus;
monolithic_1  | ~.*£££.*?amupdatedl4.microsoft.com wsus;
monolithic_1  | ~.*£££.*?amupdatedl5.microsoft.com wsus;
monolithic_1  | ~.*£££.*?assets1.xboxlive.com xboxlive;
monolithic_1  | ~.*£££.*?assets2.xboxlive.com xboxlive;
monolithic_1  | ~.*£££.*?dlassets.xboxlive.com xboxlive;
monolithic_1  | ~.*£££.*?xboxone.loris.llnwd.net xboxlive;
monolithic_1  | ~.*£££.*?.*.xboxone.loris.llnwd.net xboxlive;
monolithic_1  | ~.*£££.*?xboxone.vo.llnwd.net xboxlive;
monolithic_1  | ~.*£££.*?xbox-mbr.xboxlive.com xboxlive;
monolithic_1  | ~.*£££.*?assets1.xboxlive.com.nsatc.net xboxlive;
monolithic_1  | ~.*£££.*?xvcf1.xboxlive.com xboxlive;
monolithic_1  | }
monolithic_1  | # Finished including /etc/nginx/conf.d/30_maps.conf
monolithic_1  | 
monolithic_1  | # Including /etc/nginx/sites-enabled/10_generic.conf
monolithic_1  | 
monolithic_1  | server {
monolithic_1  | listen 80 reuseport;
monolithic_1  | 
monolithic_1  | access_log /data/logs/access.log cachelog;
monolithic_1  | error_log /data/logs/error.log;
monolithic_1  | 
monolithic_1  | 
monolithic_1  | # Including /etc/nginx/sites-available/generic.conf.d/10_generic.conf
monolithic_1  | resolver 1.1.1.1 ipv6=off;
monolithic_1  | 
monolithic_1  | location / {
monolithic_1  | 
monolithic_1  | # Including /etc/nginx/sites-available/generic.conf.d/root/10_loop_detection.conf
monolithic_1  | # Abort any circular requests
monolithic_1  | if ($http_X_LanCache_Processed_By = $hostname) {
monolithic_1  | return 508;
monolithic_1  | }
monolithic_1  | 
monolithic_1  | proxy_set_header X-LanCache-Processed-By $hostname;
monolithic_1  | add_header X-LanCache-Processed-By $hostname,$http_X_LanCache_Processed_By;
monolithic_1  | # Finished including /etc/nginx/sites-available/generic.conf.d/root/10_loop_detection.conf
monolithic_1  | # Including /etc/nginx/sites-available/generic.conf.d/root/20_cache.conf
monolithic_1  | # Cache Location
monolithic_1  | slice 1m;
monolithic_1  | proxy_cache generic;
monolithic_1  | 
monolithic_1  | proxy_ignore_headers Expires Cache-Control;
monolithic_1  | proxy_cache_valid 200 206 3650d;
monolithic_1  | proxy_set_header Range $slice_range;
monolithic_1  | 
monolithic_1  | # Only download one copy at a time and use a large timeout so
monolithic_1  | # this really happens, otherwise we end up wasting bandwith
monolithic_1  | # getting the file multiple times.
monolithic_1  | proxy_cache_lock on;
monolithic_1  | proxy_cache_lock_timeout 1h;
monolithic_1  | 
monolithic_1  | # Allow the use of state entries
monolithic_1  | proxy_cache_use_stale error timeout invalid_header updating http_500 http_502 http_503 http_504;
monolithic_1  | 
monolithic_1  | # Allow caching of 200 but not 301 or 302 as our cache key may not include query params
monolithic_1  | # hence may not be valid for all users
monolithic_1  | proxy_cache_valid 301 302 0;
monolithic_1  | 
monolithic_1  | # Enable cache revalidation
monolithic_1  | proxy_cache_revalidate on;
monolithic_1  | 
monolithic_1  | # Don't cache requests marked as nocache=1
monolithic_1  | proxy_cache_bypass $arg_nocache;
monolithic_1  | 
monolithic_1  | # 40G max file
monolithic_1  | proxy_max_temp_file_size 40960m;
monolithic_1  | 
monolithic_1  | # Finished including /etc/nginx/sites-available/generic.conf.d/root/20_cache.conf
monolithic_1  | # Including /etc/nginx/sites-available/generic.conf.d/root/30_cache_key.conf
monolithic_1  | proxy_cache_key $cacheidentifier$uri$slice_range;
monolithic_1  | # Finished including /etc/nginx/sites-available/generic.conf.d/root/30_cache_key.conf
monolithic_1  | # Including /etc/nginx/sites-available/generic.conf.d/root/40_etags.conf
monolithic_1  | # Battle.net Fix
monolithic_1  | proxy_hide_header ETag;
monolithic_1  | 
monolithic_1  | # Finished including /etc/nginx/sites-available/generic.conf.d/root/40_etags.conf
monolithic_1  | # Including /etc/nginx/sites-available/generic.conf.d/root/90_upstream.conf
monolithic_1  | # Upstream Configuration
monolithic_1  | proxy_next_upstream error timeout http_404;
monolithic_1  | proxy_pass http://$host$request_uri;
monolithic_1  | proxy_redirect off;
monolithic_1  | proxy_ignore_client_abort on;
monolithic_1  | 
monolithic_1  | # Upstream request headers
monolithic_1  | proxy_set_header Host $host;
monolithic_1  | proxy_set_header X-Real-IP $remote_addr;
monolithic_1  | proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
monolithic_1  | # Finished including /etc/nginx/sites-available/generic.conf.d/root/90_upstream.conf
monolithic_1  | # Including /etc/nginx/sites-available/generic.conf.d/root/99_debug_header.conf
monolithic_1  | # Debug Headers
monolithic_1  | add_header X-Upstream-Status $upstream_status;
monolithic_1  | add_header X-Upstream-Response-Time $upstream_response_time;
monolithic_1  | add_header X-Upstream-Cache-Status $upstream_cache_status;
monolithic_1  | # Finished including /etc/nginx/sites-available/generic.conf.d/root/99_debug_header.conf
monolithic_1  | 
monolithic_1  | }
monolithic_1  | 
monolithic_1  | # Fix for League of Legends Updater
monolithic_1  | location ~ ^.+(releaselisting_.*|.version$) {
monolithic_1  | proxy_pass http://$host;
monolithic_1  | }
monolithic_1  | 
monolithic_1  | location = /lancache-heartbeat {
monolithic_1  | add_header X-LanCache-Processed-By $hostname;
monolithic_1  | add_header 'Access-Control-Expose-Headers' '*';
monolithic_1  | add_header 'Access-Control-Allow-Origin' '*';
monolithic_1  | return 204;
monolithic_1  | }
monolithic_1  | # Finished including /etc/nginx/sites-available/generic.conf.d/10_generic.conf
monolithic_1  | # Including /etc/nginx/sites-available/generic.conf.d/20_arenanet_manifest.conf
monolithic_1  | # Fix for GW2 manifest
monolithic_1  | location ^~ /latest64 {
monolithic_1  | proxy_cache_bypass 1;
monolithic_1  | proxy_no_cache 1;
monolithic_1  | proxy_pass http://$host$request_uri;
monolithic_1  | }
monolithic_1  | # Finished including /etc/nginx/sites-available/generic.conf.d/20_arenanet_manifest.conf
monolithic_1  | }
monolithic_1  | # Finished including /etc/nginx/sites-enabled/10_generic.conf
monolithic_1  | }
monolithic_1  | # Finished including /etc/nginx/nginx.conf
monolithic_1  | Checking nginx config
monolithic_1  | nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
monolithic_1  | nginx: [emerg] chown("/data/cache/cache", 33) failed (1: Operation not permitted)
monolithic_1  | nginx: configuration file /etc/nginx/nginx.conf test failed
monolithic_1  | ERROR: hook /hooks/supervisord-pre.d/99_config_check.sh} returned a non-zero exit status '0'
lancache_monolithic_1 exited with code 1
csamsel commented 3 years ago

Better use a iSCSI volume, NFS will be very slow if you would make it work.

MathewBurnett commented 3 years ago

this issue is almost certainly permissions on the share. I expect you need the no_root_squash flag which is sometimes in features called map users on nas devices. Where possible i would always advise local storage.