A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 0

Filename: geshi/geshi.php

Line Number: 3469

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 0

Filename: geshi/geshi.php

Line Number: 3469

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 0

Filename: geshi/geshi.php

Line Number: 3469

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 0

Filename: geshi/geshi.php

Line Number: 3469

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 0

Filename: geshi/geshi.php

Line Number: 3469

Re: mail-compose.yml - Pastebin
Facebook
From Innocent Cheetah, 1 Year ago, written in YAML.
This paste is a reply to mail-compose.yml from Cream Echidna - view diff
Embed
Download Paste or View Raw
Hits: 218
  1. version: "3"
  2.  
  3. networks:
  4.     rohan-proxy:
  5.         external: true
  6.  
  7. services:
  8.   nginx-proxy-manager:
  9.     container_name: nginx-proxy-manager
  10.     image: 'jc21/nginx-proxy-manager:latest'
  11.     restart: unless-stopped
  12.     environment:
  13.      - VIRTUAL_HOST=nginx.example.com
  14.       - VIRTUAL_PORT=81
  15.     ports:
  16.      - '80:80'
  17.       - '81:81'
  18.       - '443:443'
  19.     volumes:
  20.      - /opt/data/nginx-manager/data:/data
  21.       - /opt/data/nginx-manager/letsencrypt:/etc/letsencrypt
  22.     networks:
  23.      - rohan-proxy
  24.  
  25.  
  26.   mailserver:
  27.     image: analogic/poste.io
  28.     container_name: mailserver
  29.     hostname: mail
  30.     domainname: example.com
  31.     dns:
  32.      - 1.1.1.1
  33.       - 1.0.0.1
  34.     ports:
  35.      - "80:80"    # Webmail/Admin
  36.       - "25:25"    # SMTP  (explicit TLS => STARTTLS)
  37.       - "465:465"  # ESMTP (implicit TLS)
  38.       - "587:587"  # ESMTP (explicit TLS => STARTTLS)
  39.       - "143:143"  # IMAP4
  40.       - "993:993"  # IMAP4 (implicit TLS)
  41.     volumes:
  42.      - /opt/data/mail:/data
  43.       - /opt/data/mail/webmail/plugins:/opt/www/webmail/plugins
  44.       - /opt/data/mail/webmail/config:/opt/www/webmail/config
  45.       - /etc/localtime:/etc/localtime:ro
  46.     environment:
  47.      - TZ=Europe/Seville
  48.       - HTTPS=OFF
  49.       - VIRTUAL_HOST=mail.example.com
  50.       - VIRTUAL_PORT=80
  51.       - DISABLE_CLAMAV=FALSE
  52.     restart: always
  53.     networks:
  54.      - rohan-proxy