Initial upload of configurations

This commit is contained in:
Sil Klaasboer
2025-02-17 19:23:54 +01:00
parent 75ea10380d
commit ca2bcafe16
184 changed files with 4660 additions and 2 deletions

28
nginx/docker-compose.yaml Normal file
View File

@@ -0,0 +1,28 @@
version: '3.3'
networks:
proxy:
external: true
services:
nginx:
container_name: ${CONTAINER_NAME}
image: 'jc21/nginx-proxy-manager:latest'
restart: unless-stopped
networks:
- proxy
ports:
- ${PORT_HTTP}:80
- ${PORT_HTTPS}:443
- ${PORT_ADMINPORTAL}:81
volumes:
- ${HOME_DIR}/${CONTAINER_NAME}/data:/data
- ${HOME_DIR}/${CONTAINER_NAME}/letsencrypt:/etc/letsencrypt
env_file:
- path: ./nginx.env
required: true
- path: ../global.env
required: true
environment:
- TZ=${TIMEZONE}

4
nginx/nginx.env Normal file
View File

@@ -0,0 +1,4 @@
CONTAINER_NAME=nginx
PORT_ADMINPORTAL=81
PORT_HTTP=80
PORT_HTTPS=443