What is Nostr?
Zio Mc
npub1msd…meds
2025-01-27 20:53:06
in reply to nevent1q…23dc

Zio Mc on Nostr: I use the stack ,it works great services: nginx-proxy: container_name: nginx-proxy ...

I use the stack ,it works great

services:
nginx-proxy:
container_name: nginx-proxy
image: jwilder/nginx-proxy
logging:
options:
max-size: "10m"
max-file: "3"
restart: always

volumes:
- nginx-certs:/etc/nginx/certs
- nginx-vhost:/etc/nginx/vhost.d
- nginx-html:/usr/share/nginx/html
- /var/run/docker.sock:/tmp/docker.sock:ro
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "80:80"
- "443:443"
networks:
- proxy-frontend

letsencrypt-nginx-proxy-companion:
hostname: nginx-proxy-letsencrypt
image: jrcs/letsencrypt-nginx-proxy-companion
logging:
options:
max-size: "10m"
max-file: "3"
restart: always
volumes:
- nginx-certs:/etc/nginx/certs
- nginx-vhost:/etc/nginx/vhost.d
- nginx-html:/usr/share/nginx/html
- /var/run/docker.sock:/var/run/docker.sock:ro
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
environment:
DEFAULT_EMAIL: "servers@ziomc.com"
NGINX_PROXY_CONTAINER: "nginx-proxy"

volumes:
nginx-certs: {}
nginx-vhost: {}
nginx-html: {}

networks:
proxy-frontend:
external: true
Author Public Key
npub1msd70ld6pj9ph7gxtn0wghy534t5u7q0wjy5y50fe9w3vsex2kustzmeds