a fork of "Yet another WebUI for Nginx" i.e.
486
this is my fork of the nginx-ui repo.
for easy deployment, you can use docker compose like so:
networks:
internal-network:
name: docker-internal
services:
main-proxy:
image: onixldlc/nginx-ui:latest
container_name: nginx-ui
networks:
internal-network:
restart: unless-stopped
volumes:
- "./config/nginx:/etc/nginx"
- "./config/nginx-ui:/etc/nginx-ui"
environment:
- TZ=Etc/UTC
- SERVER_NAME=localhost
ports:
- 80:80
- 443:443
- 9000:9000 # optional
i don't use docker run, but you can probably infer from the docker compose above
in the case where SERVER_NAME is empty, nginx-ui will run at port 9000 by default, and should be exposed as port 80 is already preoccupied by the default nginx welcome page.
and since default nginx is listening _, in the case where SERVER_NAME is configured you can access nginx-ui via port 80 with the specified SERVER_NAME as it will take precedence over _
Content type
Image
Digest
sha256:298fa5ea3…
Size
81.2 MB
Last updated
over 1 year ago
docker pull onixldlc/nginx-ui