Nginx

By Jimmy Mayta22d ago (Dec 25, 2025)

Nginx

docker
services:
  reverse-proxy:
    image: nginx:latest
    container_name: reverse-proxy
    ports:
      - "80:80"
      - "443:443"
    volumes:
      - ./conf:/etc/nginx/conf.d:ro
    networks:
      - jimmy_network
      - moodle_network
    restart: always

networks:
  jimmy_network:
    external: true
  moodle_network:
    external: true

Views

0

Lines

19

Characters

341

Likes

0

Details

Language
Docker
Created
Dec 25, 2025
Updated
22d ago
Size
0.3 KB

Build your snippet library

Join thousands of developers organizing and sharing code snippets.