https://github.com/dbogatov/nginx-config
NGINX configuration for my production cloud.
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
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
Metadata Files
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
- Website: https://dbogatov.org
- Twitter: dkbogatov
- Repositories: 43
- Profile: https://github.com/dbogatov
GitHub Events
Total
Last Year
Dependencies
- nginx alpine build