template.yaml 474 B

1234567891011121314151617181920212223242526
  1. ---
  2. kind: "compose"
  3. metadata:
  4. name: "Nginx"
  5. description: "An open-source web server"
  6. version: "0.0.1"
  7. date: "2023-10-01"
  8. author: "Christian Lempa"
  9. tags:
  10. - nginx
  11. - web
  12. - reverse-proxy
  13. spec:
  14. ports:
  15. vars:
  16. ports_http:
  17. description: "HTTP port for nginx service"
  18. type: int
  19. default: 8080
  20. ports_https:
  21. description: "HTTPS port for nginx service"
  22. type: int
  23. default: 8443
  24. nginx:
  25. vars:
  26. ---