Untitled

From Small Cassowary, 7 Years ago, written in Plain Text, viewed 2 times.
URL https://paste.blessuren.de/view/ddf613a5 Embed
Download Paste or View Raw
  1. version: '3'
  2. services:
  3.   nginx:
  4.     image: nginx:latest
  5.     deploy:
  6.       replicas: 1    
  7.     ports:
  8.       - "80:80"
  9.       - "443:443"
  10.     networks:
  11.       - bnet      
  12.     volumes:
  13.       - /opt/nginx/nginx.conf:/etc/nginx/nginx.conf
  14.       - /opt/nginx/proxy.conf:/etc/nginx/proxy.conf
  15.       - /opt/nginx/.htpasswd:/etc/nginx/.htpasswd
  16.       - /opt/nginx/conf.d:/etc/nginx/conf.d/
  17.       - /opt/nginx/www/:/usr/share/nginx/html/
  18.       - /opt/letsencrypt:/etc/letsencrypt/
  19. networks:
  20.   bnet:
  21.     external: true

Reply to "Untitled"

Here you can reply to the paste above