https://github.com/dbogatov/nginx-config

NGINX configuration for my production cloud.

https://github.com/dbogatov/nginx-config

Science Score: 13.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (2.6%) to scientific vocabulary
Last synced: 10 months ago · JSON representation

Repository

NGINX configuration for my production cloud.

Basic Info
  • Host: GitHub
  • Owner: dbogatov
  • Language: HTML
  • Default Branch: master
  • Size: 108 KB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 1
  • Open Issues: 0
  • Releases: 0
Created over 8 years ago · Last pushed over 8 years ago
Metadata Files
Readme

README.md

NGINX

How add to swarm

Make sure the overlay network is created

docker network create \ --driver overlay \ --attachable \ internal-network

Deploy the service

docker service create \ --name nginx \ --publish 80:80 \ --publish 443:443 \ --mount type=bind,source=/etc/letsencrypt/,target=/etc/letsencrypt/,readonly \ --mount type=bind,source=/etc/ssl/certs/dhparam.pem,target=/etc/ssl/certs/dhparam.pem,readonly \ --constraint 'node.role == manager' \ --network internal-network \ registry.dbogatov.org/dbogatov/nginx-config:latest

Update the service

docker pull registry.dbogatov.org/dbogatov/nginx-config:latest docker service update --image registry.dbogatov.org/dbogatov/nginx-config:latest nginx

Owner

  • Name: Dmytro Bogatov
  • Login: dbogatov
  • Kind: user
  • Location: Boston, MA

GitHub Events

Total
Last Year

Dependencies

Dockerfile docker
  • nginx alpine build