name: gitea-pages-proxy # Thin nginx proxy so *.pages.nuclide.systems:80 reaches Gitea:3000 # without the port suffix in the Host header that breaks Pages routing. # Remove once a Zoraxy route is added for pages.nuclide.systems. services: pages-proxy: image: nginx:alpine container_name: gitea-pages-proxy restart: unless-stopped ports: - "80:80" volumes: - /opt/stacks/gitea-pages-proxy/nginx.conf:/etc/nginx/nginx.conf:ro labels: - "homepage.group=infra" - "homepage.name=Gitea Pages proxy" networks: {}