hysryt / wiki

https://hysryt.github.io/wiki/
0 stars 0 forks source link

Varnish #188

Open hysryt opened 3 years ago

hysryt commented 3 years ago

docker-compose.yml

version: "3"

services:
  app:
    image: php:8-apache
    ports:
      - 8080:80
    volumes:
      - ./html:/var/www/html

  cache:
    image: varnish:7.0
    ports:
      - 8081:80
    volumes:
      - ./default.vcl:/etc/varnish/default.vcl
    tmpfs:
      - /var/lib/varnish:exec

default.vcl

vcl 4.0;

backend default {
  .host = "app:80";
}