From e151eb4313493536a80421ccce44bc647b2ed290 Mon Sep 17 00:00:00 2001 From: DRAGONTOS Date: Wed, 3 Apr 2024 21:24:09 +0200 Subject: [PATCH] pages: fixed index.html and added some notes to docker-compose.yml --- data/html/index.html | 15 ++++++--------- docker-compose.yml | 10 +++++----- 2 files changed, 11 insertions(+), 14 deletions(-) diff --git a/data/html/index.html b/data/html/index.html index 9c2b150..2abc252 100644 --- a/data/html/index.html +++ b/data/html/index.html @@ -1,7 +1,7 @@ -Server Startpage! +ngin-docker! -

Server BOOBA Startpage!

-

OWOWOWOWOWOWOOWOWOWWO -working. Further configuration is required.

+

Nginx in a Docker container!

+

.

-

For online documentation and support please refer to -searxng.
-Commercial support is available at -nginx.com.

+

For online documentation please refer to my website: +WIP.
-

Thank you for using nginx.

+

Thank you for using my nginx docker container.

diff --git a/docker-compose.yml b/docker-compose.yml index 34014f3..a5228a8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,9 +5,9 @@ services: restart: always image: nginx:latest ports: - - "80:80" + - "80:80" # Change this if you want to use SSL or anything else. volumes: - - "./data/conf/nginx.conf:/etc/nginx/nginx.conf" - - "./data/sites/:/etc/nginx/conf.d/" - - "./data/html/:/var/www/html/" - - "./data/certs/:/etc/certs/" + - "./data/conf/nginx.conf:/etc/nginx/nginx.conf" # The nginx config. + - "./data/sites/:/etc/nginx/conf.d/" # This has the configuration for configuring sites and enabling them. + - "./data/html/:/var/www/html/" # Where the website source code resides. + - "./data/certs/:/etc/certs/" # Put your SSL certificates in here!