Desperate call for help with LEMP Jail

Please, Please can I have some help…

I have created a jail with jail maker.
I have installed dockge.
I have created an nginx container using the boiler plate yaml and have changed the mnt points.

When I click on the port (8080) in dockge it shows me the nginx index page.

  1. How do I change the index page?
  2. Where are the nginx configuration files located?

Please, please can someone help me? I have been working on this for days and am getting nowhere :disappointed:. Thank you.

I presume you’ve tried working your way through some nginx troubleshooting?

And can you post your docker compose? May help some experts here to identify the issue (removing any sensitive data e.g. plain text passwords).

All sorted. The issue was the mount points within the docker compose yaml. The working compose is here:

version: "3.8"
services:
  nginx:
    image: nginx:1-alpine
    ports:
      - 8089:80
    volumes:
      - /mnt/www/html5up-stellar/:/usr/share/nginx/html

Heh - I thought it would be the mount points. They’re tricky wee beasties.