small_server_thingies/nginx/nginx-server-docker-compose.yaml

13 lines
519 B
YAML
Raw Normal View History

2021-11-14 17:17:17 +01:00
services:
nginx:
image: nginx
volumes:
2021-11-14 17:26:40 +01:00
- "${NGINX_DATA_HOME}/site:/var/www/public"
- "${NGINX_DATA_HOME}/nginx_stuff/nginx.conf:/etc/nginx/nginx.conf"
- "${NGINX_DATA_HOME}/nginx_stuff/404.html:/usr/share/nginx/html/404.html"
2021-11-14 17:17:17 +01:00
# to use jekyll's 404 page, uncomment the line below and disable the line above
# Important: ensure that 404.html exist else this will throw an error during build
# - "./web/_site/404.html:/usr/share/nginx/html/404.html"
ports:
- 42072:80