1
0

syntax linting

This commit is contained in:
2025-07-13 13:32:34 -04:00
parent 66974f16e8
commit 2eeace8a0d
21 changed files with 964 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
---
# NGINX Proxy Manager
# A reverse proxy for web apps
# Created by Igor Sysoev
# ↳ https://github.com/nginx/nginx
services:
nginx:
image: jc21/nginx-proxy-manager:latest
container_name: nginx-proxy-manager
restart: unless-stopped
networks:
- proxy
ports:
- 80:80
- 443:443
# - 81:81
environment:
PUID: 1000
PGID: 1000
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
- /home/fxequals/docker/nginx/data:/data
- /home/fxequals/docker/nginx/letsencrypt:/etc/letsencrypt
networks:
proxy:
external: true
# Documentation available at https://nginxproxymanager.com/guide/